https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: a54d90225ca9a9945add6c7b26220e2f699ec2e2 authored by otakuchiyan on 23 April 2016, 11:25:28 UTC
Added notify's restore button, fixed travis.yml
Tip revision: a54d902
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