Browse Source

android: Stop building x86 packages in APKs

This was really only meant for building the app to run in an emulator. If this is necessary, just add manually.
nce_cpp
Charles Lombardo 3 years ago
committed by bunnei
parent
commit
15e3bb4cfb
  1. 2
      src/android/app/build.gradle.kts

2
src/android/app/build.gradle.kts

@ -50,7 +50,7 @@ android {
versionName = getGitVersion()
ndk {
abiFilters += listOf("arm64-v8a", "x86_64")
abiFilters += listOf("arm64-v8a")
}
buildConfigField("String", "GIT_HASH", "\"${getGitHash()}\"")

Loading…
Cancel
Save