https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: fe477642f2e5f3fa3240ab5002caeb9201677926 authored by otakuchiyan on 27 February 2016, 15:01:06 UTC
Implemented restore function
Tip revision: fe47764
depending_repos.sh
#!/bin/bash

COMPILESDK_VER="22"
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