https://github.com/otakuchiyan/DNSman
Raw File
Tip revision: c1d63a541f419c727db5144bc3bd9cb93bc46d2a authored by otakuchiyan on 02 October 2015, 14:53:15 UTC
Fix translation
Tip revision: c1d63a5
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
    mv ./build.gradle.libsuperuser ./libsuperuser/build.gradle
fi
back to top