https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: da13f64880cbdb5bbd2005f1e0c73c180fa61549 authored by Hiroki Chen on 28 January 2017, 14:57:05 UTC
Merge pull request #24 from DevFactory/release/remove-useless-imports-fix-1
Tip revision: da13f64
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