about summary refs log tree commit diff
path: root/pkgs/development/mobile
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2013-08-06 10:41:13 +0200
committerSander van der Burg <svanderburg@gmail.com>2013-08-06 10:41:13 +0200
commited70cc9830fa4edbdbd223517896a2132e8c88dc (patch)
treebff44ad3b64c6c79a00d86026352424d0063eb18 /pkgs/development/mobile
parent02c67c3b017480f4207d44377733b47c36b16127 (diff)
downloadnixlib-ed70cc9830fa4edbdbd223517896a2132e8c88dc.tar
nixlib-ed70cc9830fa4edbdbd223517896a2132e8c88dc.tar.gz
nixlib-ed70cc9830fa4edbdbd223517896a2132e8c88dc.tar.bz2
nixlib-ed70cc9830fa4edbdbd223517896a2132e8c88dc.tar.lz
nixlib-ed70cc9830fa4edbdbd223517896a2132e8c88dc.tar.xz
nixlib-ed70cc9830fa4edbdbd223517896a2132e8c88dc.tar.zst
nixlib-ed70cc9830fa4edbdbd223517896a2132e8c88dc.zip
We must also take Android's ABI version into account
Diffstat (limited to 'pkgs/development/mobile')
-rw-r--r--pkgs/development/mobile/titaniumenv/build-app.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/mobile/titaniumenv/build-app.nix b/pkgs/development/mobile/titaniumenv/build-app.nix
index 24bb1d2d93a0..4dbf6c5e82ef 100644
--- a/pkgs/development/mobile/titaniumenv/build-app.nix
+++ b/pkgs/development/mobile/titaniumenv/build-app.nix
@@ -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;
   };