first commit

This commit is contained in:
Henry Hiles 2025-11-10 14:50:58 -05:00
commit 89a2ce5cb8
No known key found for this signature in database
83 changed files with 3433 additions and 0 deletions

20
nix/android.nix Normal file
View file

@ -0,0 +1,20 @@
{
androidenv,
}:
androidenv.composeAndroidPackages {
toolsVersion = "26.1.1";
platformToolsVersion = "36.0.1";
buildToolsVersions = [
"35.0.0"
"36.0.0"
];
cmakeVersions = [ "3.22.1" ];
platformVersions = [ "36" ];
abiVersions = [
"armeabi-v7a"
"arm64-v8a"
];
includeNDK = true;
ndkVersions = [ "27.0.12077973" ];
}