mirror of
https://github.com/status-im/status-react.git
synced 2025-01-18 23:12:56 +00:00
Jakub Sokołowski
0652d18653
Notable software upgrades: - Go `1.14.13` to `1.14.15` - Clojure `1.10.1.763` to `1.10.3.855` - NodeJS `12.20.1` to `12.22.1` - Git `2.29.2` to `2.31.1` - CMake `3.10.2` to `3.18.1` - Curl `7.74.0` to `7.76.1` - Android NDK `21.3.6528147` to `22.1.7171670` - Android Platform Tools `30.0.5` to `31.0.2` Signed-off-by: Jakub Sokołowski <jakub@status.im>
29 lines
994 B
Nix
29 lines
994 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
|
|
|
|
android = {
|
|
gradle-opts = null; # Gradle options passed for Android builds
|
|
keystore-path = null; # Path to keystore for signing the APK
|
|
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
|
|
};
|
|
|
|
nimbus = { src-override = null; };
|
|
status-go = { src-override = null; };
|
|
};
|
|
|
|
# Android SDK requires an accepted license
|
|
android_sdk.accept_license = true;
|
|
|
|
permittedInsecurePackages = [
|
|
# Android Env still needs old OpenSSL
|
|
"openssl-1.0.2u"
|
|
# Support for Go 1.14 ended with the release of Go 1.16
|
|
"go-1.14.15"
|
|
];
|
|
}
|