mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 16:56:31 +00:00
Jakub Sokołowski
61653888f8
Possible fix fix failing `status-go` builds: https://github.com/status-im/status-react/issues/13346 Other notable upgrades: * NodeJS `16.15.1` to `16.15.0` * Yarn `1.22.18` to `1.22.19` * Clojure `1.11.1.1113` to `1.11.1.1139` Signed-off-by: Jakub Sokołowski <jakub@status.im>
22 lines
814 B
Nix
22 lines
814 B
Nix
# Status defaults for config
|
|
{
|
|
status-im = {
|
|
build-type = "pr"; # Build type (influences which .env file gets used for feature flags)
|
|
build-number = 9999; # Used for versionCode and CFBundleVersion in Android and iOS respectively
|
|
commit-hash = "unknown"; # Included in APK Manifest for easier identification.
|
|
|
|
android = {
|
|
gradle-opts = null; # Gradle options passed for Android builds
|
|
apk-signed = true; # F-Droid builds aren't signed by us
|
|
abi-split = false; # If APKs should be split based on architectures
|
|
abi-include = "armeabi-v7a;arm64-v8a;x86"; # Android architectures to build for
|
|
};
|
|
|
|
status-go = { src-override = null; };
|
|
};
|
|
|
|
# Android SDK requires an accepted license
|
|
android_sdk.accept_license = true;
|
|
allowUnfree = true;
|
|
}
|