mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-24 03:09:43 +01:00
Limit architectures to just arm64-v8a (aarch64) to avoid confusion
This commit is contained in:
parent
d19c52cec9
commit
dac425ea19
1 changed files with 10 additions and 0 deletions
|
|
@ -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 {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue