https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: c70888b96fc2507240f73b92678b6d40cee5d6f5 authored by otakuchiyan on 23 April 2016, 05:38:05 UTC
Fixed current DNS view, enabled ControlNotify
Tip revision: c70888b
depending_repos.sh
#!/bin/bash

COMPILESDK_VER="23"
BUILDTOOLS_VER="23.0.1"

if [ ! -e 'libsuperuser' ]; then
    echo '>Clone libsuperuser'
    git clone https://github.com/chainfire/libsuperuser --depth=1
    mv libsuperuser/libsuperuser tmp
    rm -rf libsuperuser
    mv tmp libsuperuser
    cp ./build.gradle.libsuperuser ./libsuperuser/build.gradle
fi
back to top