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.
This commit is contained in:
Philipp Hasper
2026-01-19 15:08:09 +00:00
committed by GitHub
parent 045625f597
commit af9030fd7a

View File

@@ -10,6 +10,7 @@ plugins {
val abiCodes = mapOf( val abiCodes = mapOf(
"arm64-v8a" to 0, "arm64-v8a" to 0,
"armeabi-v7a" to -1, "armeabi-v7a" to -1,
"x86_64" to -2,
) )
android { android {
@@ -25,7 +26,7 @@ android {
// https://ai.google.dev/edge/litert/android/index // https://ai.google.dev/edge/litert/android/index
minSdk = 26 minSdk = 26
targetSdk = 36 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" versionName = "1.11.0"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"