summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Charles Lombardo2023-05-28 20:24:48 -0400
committerGravatar bunnei2023-06-03 00:06:04 -0700
commit0cbae3379067b657cce3bec6184bca31806363cf (patch)
tree262ba98108da8815f7934ad40a0383fd04e1876a
parentandroid: Add FPS toggle (diff)
downloadyuzu-0cbae3379067b657cce3bec6184bca31806363cf.tar.gz
yuzu-0cbae3379067b657cce3bec6184bca31806363cf.tar.xz
yuzu-0cbae3379067b657cce3bec6184bca31806363cf.zip
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.kts2
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 {
50 versionName = getGitVersion() 50 versionName = getGitVersion()
51 51
52 ndk { 52 ndk {
53 abiFilters += listOf("arm64-v8a", "x86_64") 53 abiFilters += listOf("arm64-v8a")
54 } 54 }
55 55
56 buildConfigField("String", "GIT_HASH", "\"${getGitHash()}\"") 56 buildConfigField("String", "GIT_HASH", "\"${getGitHash()}\"")