Skip to content

Commit

Permalink
#60 add 'arm64-v8a' 'x86_64' to NDK build
Browse files Browse the repository at this point in the history
  • Loading branch information
tkirshboim authored and joebowbeer committed Jul 1, 2018
1 parent 6569513 commit 30f782a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion PdCore/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
APP_PLATFORM := android-17
APP_OPTIM := release
APP_ABI := armeabi-v7a x86
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
5 changes: 5 additions & 0 deletions PdTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@ android {
targetSdkVersion 27
versionCode 1
versionName "1.0"

// Uncomment the following 'ndk' section to include only 32-bit CPU architectures in the APK
// ndk {
// abiFilters "x86", "armeabi-v7a"
// }
}

buildTypes {
Expand Down
2 changes: 1 addition & 1 deletion PdTest/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_PLATFORM := android-17
APP_OPTIM := release
APP_ABI := armeabi-v7a x86
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
APP_ALLOW_MISSING_DEPS=true
2 changes: 1 addition & 1 deletion ScenePlayer/jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_PLATFORM := android-17
APP_OPTIM := release
APP_ABI := armeabi-v7a x86
APP_ABI := armeabi-v7a arm64-v8a x86 x86_64
APP_ALLOW_MISSING_DEPS=true

0 comments on commit 30f782a

Please sign in to comment.