Skip to content

Commit

Permalink
Also build x86 app target
Browse files Browse the repository at this point in the history
  • Loading branch information
edo9300 committed Oct 26, 2021
1 parent bf51ba2 commit c4c0ea2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ android {
ndk {
// Specifies the ABI configurations of your native
// libraries Gradle should build and package with your APK.
abiFilters 'armeabi-v7a', 'arm64-v8a'//, 'x86', 'x86_64'
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86'//, 'x86_64'
}
}

Expand Down
2 changes: 1 addition & 1 deletion jni/Application.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
APP_ABI := armeabi-v7a arm64-v8a #x86 x86_64
APP_ABI := armeabi-v7a arm64-v8a x86 #x86_64
APP_PLATFORM := android-16
APP_STL := c++_static
APP_CPPFLAGS := -std=c++14 -Wc++14-extensions -fno-rtti -fexceptions
Expand Down

0 comments on commit c4c0ea2

Please sign in to comment.