Compare commits

...

2 commits

Author SHA1 Message Date
Benson Chu
8a5a0156a1 Okay, let's exclude android 29 and older 2025-04-26 18:30:59 -05:00
Benson Chu
c053e07865 Update to 24.11 2025-04-26 18:02:02 -05:00
2 changed files with 20 additions and 6 deletions

View file

@ -20,16 +20,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1701282334,
"narHash": "sha256-MxCVrXY6v4QmfTwIysjjaX0XUhqBbxTWWB4HXtDYsdk=",
"lastModified": 1731603435,
"narHash": "sha256-CqCX4JG7UiHvkrBTpYC3wcEurvbtTADLbo3Ns2CEoL8=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "057f9aecfb71c4437d2b27d3323df7f93c010b7e",
"rev": "8b27c1239e5c421a2bbc2c65d52e4a6fbf2ff296",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "23.11",
"ref": "24.11",
"repo": "nixpkgs",
"type": "github"
}

View file

@ -5,7 +5,7 @@
description = "Flutter 3.13.x";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/23.11";
nixpkgs.url = "github:NixOS/nixpkgs/24.11";
flake-utils.url = "github:numtide/flake-utils";
};
@ -23,7 +23,21 @@
};
};
androidSdk = pkgs.androidenv.androidPkgs_9_0.androidsdk;
androidSdk = (pkgs.androidenv.composeAndroidPackages {
platformVersions = [
# "28"
# "29"
"30"
"31"
"32"
"33"
"34"
"35"
];
includeEmulator = true;
includeSystemImages = true;
includeNDK = true;
}).androidsdk;
in
{
devShell =