Limit architectures to just arm64-v8a (aarch64) to avoid confusion

This commit is contained in:
Alexander Sosedkin 2023-11-26 12:58:26 +01:00
parent d19c52cec9
commit dac425ea19

View file

@ -45,6 +45,9 @@ android {
versionName "0.118.0_v0.3.3_nix" versionName "0.118.0_v0.3.3_nix"
// fdroid checkupdates looks for literal versionCode/versionName, // fdroid checkupdates looks for literal versionCode/versionName,
// can't get fancy with these and use string interpolation and similar // can't get fancy with these and use string interpolation and similar
ndk {
abiFilters 'arm64-v8a'
}
minSdkVersion project.properties.minSdkVersion.toInteger() minSdkVersion project.properties.minSdkVersion.toInteger()
targetSdkVersion project.properties.targetSdkVersion.toInteger() targetSdkVersion project.properties.targetSdkVersion.toInteger()
@ -80,6 +83,13 @@ android {
} }
} }
*/ */
splits {
abi {
reset ()
include 'arm64-v8a'
universalApk false
}
}
} }
signingConfigs { signingConfigs {