mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-10 16:56:31 +00:00
a716f4e435
fixes #18291 ## Summary Changes worth mentioning are : - More hacks/patches - Force app to use `Java 17` everywhere to compile `kotlin,java` - `gems` were upgraded after a long time - `aapt2` was bumped to `8.1.1` - `metro` is now at `0.80.4` - `xcbeautify` was bumped to `1.4.0` - `@react-native-community/clipboard` lib was replaced with `@react-native-clipboard/clipboard` - `react-native-dialogs` lib was upgraded to `1.1.2` - `react-native-gesture-handler` lib was upgraded to `2.14.1` - `react-native-navigation` was upgraded to `7.37.2` ## Platforms - Android - iOS
27 lines
753 B
Nix
27 lines
753 B
Nix
#
|
|
# This Nix expression centralizes the configuration
|
|
# for the Android development environment.
|
|
#
|
|
|
|
{ androidenv, lib, stdenv }:
|
|
|
|
assert lib.assertMsg (stdenv.system != "aarch64-darwin")
|
|
"aarch64-darwin not supported for Android SDK. Use: NIXPKGS_SYSTEM_OVERRIDE=x86_64-darwin";
|
|
|
|
# The "android-sdk-license" license is accepted
|
|
# by setting android_sdk.accept_license = true.
|
|
androidenv.composeAndroidPackages {
|
|
cmdLineToolsVersion = "9.0";
|
|
toolsVersion = "26.1.1";
|
|
platformToolsVersion = "33.0.3";
|
|
buildToolsVersions = [ "34.0.0" ];
|
|
platformVersions = [ "34" ];
|
|
cmakeVersions = [ "3.22.1" ];
|
|
ndkVersion = "25.2.9519653";
|
|
includeNDK = true;
|
|
includeExtras = [
|
|
"extras;android;m2repository"
|
|
"extras;google;m2repository"
|
|
];
|
|
}
|