From 2763c4fdee3551961c7eae3bfc9d08cccbbca256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Tue, 17 Jun 2025 13:44:16 +0200 Subject: [PATCH] feat(android) drop support for x86 architecture It's only used by really old Chromebooks, and we provide a TWA for those anyway. --- android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 1c749682db..e39cb66c29 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -25,7 +25,7 @@ android { targetSdkVersion rootProject.ext.targetSdkVersion ndk { - abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' + abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86_64' } }