https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: 27dbc7fc8802af8559ff78fe29b397c628f0f126 authored by otakuchiyan on 26 February 2016, 13:54:39 UTC
Update README.md
Tip revision: 27dbc7f
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