Okay, let's exclude android 29 and older

This commit is contained in:
Benson Chu 2025-04-26 18:30:59 -05:00
parent c053e07865
commit 8a5a0156a1

View file

@ -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 =