Okay, let's exclude android 29 and older
This commit is contained in:
parent
c053e07865
commit
8a5a0156a1
1 changed files with 15 additions and 1 deletions
16
flake.nix
16
flake.nix
|
|
@ -23,7 +23,21 @@
|
|||
};
|
||||
};
|
||||
|
||||
androidSdk = pkgs.androidenv.androidPkgs.androidsdk;
|
||||
androidSdk = (pkgs.androidenv.composeAndroidPackages {
|
||||
platformVersions = [
|
||||
# "28"
|
||||
# "29"
|
||||
"30"
|
||||
"31"
|
||||
"32"
|
||||
"33"
|
||||
"34"
|
||||
"35"
|
||||
];
|
||||
includeEmulator = true;
|
||||
includeSystemImages = true;
|
||||
includeNDK = true;
|
||||
}).androidsdk;
|
||||
in
|
||||
{
|
||||
devShell =
|
||||
|
|
|
|||
Loading…
Reference in a new issue