Skip to content
Snippets Groups Projects
Unverified Commit 246fb864 authored by n8 fr8's avatar n8 fr8
Browse files

update build script to add 64 bit builds

also remove "android update" deprecated
parent 8eeaf2b3
No related branches found
No related tags found
No related merge requests found
......@@ -35,15 +35,21 @@ build_external_dependencies()
check_android_dependencies
APP_ABI=armeabi make -C external clean
APP_ABI=armeabi make -C external
APP_ABI=arm64 NDK_PLATFORM_LEVEL=21 NDK_BIT=64 make -C external clean
APP_ABI=arm64 NDK_PLATFORM_LEVEL=21 NDK_BIT=64 make -C external
APP_ABI=x86 make -C external clean
APP_ABI=x86 make -C external
APP_ABI=x86_64 NDK_PLATFORM_LEVEL=21 NDK_BIT=64 make -C external clean
APP_ABI=x86_64 NDK_PLATFORM_LEVEL=21 NDK_BIT=64 make -C external
}
build_app()
{
echo "Building tor-android"
build_external_dependencies
$ANDROID_HOME/tools/android update project --name $2 --target $3 --path ./tor-android-binary/src/main/
##android update no longer used
##$ANDROID_HOME/tools/android update project --name $2 --target $3 --path ./tor-android-binary/src/main/
if [ -z $1 ] || [ $1 = 'debug' ]; then
./gradlew assembleDebug
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment