mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
We must also take Android's ABI version into account
This commit is contained in:
parent
02c67c3b01
commit
ed70cc9830
1 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{stdenv, androidsdk, titaniumsdk, xcodewrapper}:
|
||||
{ appId, name, appName ? null, src, target, androidPlatformVersions ? [ "8" ]
|
||||
{ appId, name, appName ? null, src, target, androidPlatformVersions ? [ "8" ], androidAbiVersions ? [ "armeabi" "armeabi-v7a" ]
|
||||
, release ? false, androidKeyStore ? null, androidKeyAlias ? null, androidKeyStorePassword ? null
|
||||
, iosKeyFile ? null, iosCertificateName ? null, iosCertificate ? null, iosCertificatePassword ? null, iosDistribute ? false
|
||||
}:
|
||||
|
@ -10,6 +10,7 @@ assert (release && target == "iphone") -> iosKeyFile != null && iosCertificateNa
|
|||
let
|
||||
androidsdkComposition = androidsdk {
|
||||
platformVersions = androidPlatformVersions;
|
||||
abiVersions = androidAbiVersions;
|
||||
useGoogleAPIs = true;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue