From 0cbae3379067b657cce3bec6184bca31806363cf Mon Sep 17 00:00:00 2001
From: Charles Lombardo <clombardo169@gmail.com>
Date: Sun, 28 May 2023 20:24:48 -0400
Subject: [PATCH] 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.
---
 src/android/app/build.gradle.kts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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()}\"")