From 4fcd96b25ed0101639102e4a7fc57867ba42e164 Mon Sep 17 00:00:00 2001 From: Alexander Sosedkin Date: Sun, 30 Jun 2024 20:34:16 +0200 Subject: [PATCH] app/build.gradle: allow building x86_64 --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index d9b8717f..809bf281 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -46,7 +46,7 @@ android { // fdroid checkupdates looks for literal versionCode/versionName, // can't get fancy with these and use string interpolation and similar ndk { - abiFilters 'arm64-v8a' + abiFilters 'arm64-v8a', 'x86_64' } minSdkVersion project.properties.minSdkVersion.toInteger()