https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: 71427807fbce6c139a72a56d8aa12d0fa9cbdb54 authored by otakuchiyan on 08 January 2016, 13:06:53 UTC
NDC mode supported android 5, added travis auto release
Tip revision: 7142780
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