summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/build.gradle7
-rw-r--r--app/jni/Application.mk2
2 files changed, 8 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 1057da44..9207ff84 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -156,6 +156,13 @@ task updateIcsOpenVpn( type: Copy, dependsOn: 'mergeUntranslatable') {
} into '.'
}
+task buildNative ( type: Exec ) {
+
+ commandLine 'sh', 'misc/build-native.sh', 'USE_BREAKPAD=0', '-j 8'
+}
+
+preBuild.dependsOn buildNative
+
//assembleRelease.dependsOn connectedCheck
afterEvaluate {
//installRelease.dependsOn connectedCheck
diff --git a/app/jni/Application.mk b/app/jni/Application.mk
index f85269d8..b7af50cd 100644
--- a/app/jni/Application.mk
+++ b/app/jni/Application.mk
@@ -1,4 +1,4 @@
-APP_ABI := all32
+APP_ABI := arm64-v8a armeabi armeabi-v7a mips x86 x86_64
APP_PLATFORM := android-14
APP_STL:=stlport_shared