https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: 66ab03c99105b6787a6d08a402c44af9453330e0 authored by otakuchiyan on 29 April 2016, 14:38:53 UTC
Missed files
Tip revision: 66ab03c
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