mirror of
https://github.com/status-im/status-react.git
synced 2025-01-13 12:36:11 +00:00
Jakub Sokołowski
5e9c7da96c
Notable upgrades: | Package | Previous | Current | |----------------|-------------|-------------| | `glibc` | `2.32` | `2.33` | | `git` | `2.31.1` | `2.32.0` | | `clojure` | `1.10.3.855`| `1.10.3.943`| | `nodejs` | `12.22.1` | `12.22.6` | | `yarn` | `1.22.10` | `1.22.11` | | Platform Tools | `31.0.2` | `31.0.3` | | Build Tools | `30.0.3` | `31.0.0` | Signed-off-by: Jakub Sokołowski <jakub@status.im>
23 lines
604 B
Nix
23 lines
604 B
Nix
#
|
|
# This Nix expression centralizes the configuration
|
|
# for the Android development environment.
|
|
#
|
|
|
|
{ stdenv, config, callPackage, androidenv, openjdk, mkShell }:
|
|
|
|
# The "android-sdk-license" license is accepted
|
|
# by setting android_sdk.accept_license = true.
|
|
androidenv.composeAndroidPackages {
|
|
toolsVersion = "26.1.1";
|
|
platformToolsVersion = "31.0.3";
|
|
buildToolsVersions = [ "31.0.0" ];
|
|
platformVersions = [ "30" ];
|
|
cmakeVersions = [ "3.18.1" ];
|
|
ndkVersion = "22.1.7171670";
|
|
includeNDK = true;
|
|
includeExtras = [
|
|
"extras;android;m2repository"
|
|
"extras;google;m2repository"
|
|
];
|
|
}
|