blob: 17c6e6928769ce73aaf8d1e0226f8a7f6c8f9977 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
with (import <nixpkgs> {
config.allowUnfree = true;
config.android_sdk.accept_license = true;
});
androidenv.composeAndroidPackages {
platformVersions = ["28" "30" "31"];
buildToolsVersions = ["30.0.3"];
includeEmulator = true;
includeSystemImages = true;
systemImageTypes = ["google_apis_playstore"];
abiVersions = ["x86_64"];
}
|