From af9030fd7a11cb75af14d150c348b28daccbe661 Mon Sep 17 00:00:00 2001 From: Philipp Hasper Date: Mon, 19 Jan 2026 15:08:09 +0000 Subject: [PATCH] Offer x86_64 build again (#98) This build variant is very helpful for testing on emulators. Given that since d991c42f the apks are split by ABI, this also doesn't have a detrimental impact on the installation experience. --- app/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 31a7df4..079fd83 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -10,6 +10,7 @@ plugins { val abiCodes = mapOf( "arm64-v8a" to 0, "armeabi-v7a" to -1, + "x86_64" to -2, ) android { @@ -25,7 +26,7 @@ android { // https://ai.google.dev/edge/litert/android/index minSdk = 26 targetSdk = 36 - versionCode = 42 // increment by 2 because of ABI-specific APKs + versionCode = 43 // increment by 3 because of ABI-specific APKs versionName = "1.11.0" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"