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.
This commit is contained in:
Charles Lombardo
2023-05-28 20:24:48 -04:00
committed by bunnei
parent 4c282944b7
commit fc13c5c58e
+1 -1
View File
@@ -50,7 +50,7 @@ android {
versionName = getGitVersion()
ndk {
abiFilters += listOf("arm64-v8a", "x86_64")
abiFilters += listOf("arm64-v8a")
}
buildConfigField("String", "GIT_HASH", "\"${getGitHash()}\"")