diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-05-28 20:24:48 -0400 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2023-06-03 00:06:04 -0700 |
commit | 0cbae3379067b657cce3bec6184bca31806363cf (patch) | |
tree | 262ba98108da8815f7934ad40a0383fd04e1876a | |
parent | d49eb7faad11c700d982a4e8023404da13a2a93f (diff) |
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.
-rw-r--r-- | src/android/app/build.gradle.kts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/android/app/build.gradle.kts b/src/android/app/build.gradle.kts index 9121ee7e1..21ebfa4fc 100644 --- a/src/android/app/build.gradle.kts +++ b/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()}\"") |