mirror of
https://github.com/nix-community/nix-on-droid-app.git
synced 2025-11-08 11:36:11 +01:00
Limit architectures to just arm64-v8a (aarch64) to avoid confusion
This commit is contained in:
parent
e55809faa9
commit
2c4fbc0fcc
1 changed files with 10 additions and 0 deletions
|
|
@ -45,6 +45,9 @@ android {
|
|||
versionName "0.118.0_v0.3.3_nix"
|
||||
// fdroid checkupdates looks for literal versionCode/versionName,
|
||||
// can't get fancy with these and use string interpolation and similar
|
||||
ndk {
|
||||
abiFilters 'arm64-v8a'
|
||||
}
|
||||
|
||||
minSdkVersion project.properties.minSdkVersion.toInteger()
|
||||
targetSdkVersion project.properties.targetSdkVersion.toInteger()
|
||||
|
|
@ -80,6 +83,13 @@ android {
|
|||
}
|
||||
}
|
||||
*/
|
||||
splits {
|
||||
abi {
|
||||
reset ()
|
||||
include 'arm64-v8a'
|
||||
universalApk false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue