From 637801d8e79c6dca2bd9645cb7a55502d58fc774 Mon Sep 17 00:00:00 2001 From: Govind Date: Fri, 17 Jan 2025 23:53:01 +0100 Subject: [PATCH 1/2] Ensures docs are in line with API --- docs/integrations/android.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/integrations/android.md b/docs/integrations/android.md index 0b27f0650..6827b3cc9 100644 --- a/docs/integrations/android.md +++ b/docs/integrations/android.md @@ -45,7 +45,10 @@ For a more tailored development environment you can specify specific options: "intel-android-sysimage-license" "mips-android-sysimage-license" ]; - android-studio = pkgs.android-studio; + android-studio = { + enable = true; + package = pkgs.android-studio; + }; }; } ``` @@ -94,4 +97,3 @@ The following config works with the flutter starter project. }; } ``` - From 857e72b743f2657ec3c018bf066a3cbbcecb1afa Mon Sep 17 00:00:00 2001 From: Govind Date: Sat, 18 Jan 2025 00:03:58 +0100 Subject: [PATCH 2/2] Update Android docs --- docs/integrations/android.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/integrations/android.md b/docs/integrations/android.md index 6827b3cc9..86a33cade 100644 --- a/docs/integrations/android.md +++ b/docs/integrations/android.md @@ -21,7 +21,7 @@ For a more tailored development environment you can specify specific options: platforms.version = [ "32" "34" ]; systemImageTypes = [ "google_apis_playstore" ]; abis = [ "arm64-v8a" "x86_64" ]; - cmakeVersions = [ "3.22.1" ]; + cmake.version = [ "3.22.1" ]; cmdLineTools.version = "11.0"; tools.version = "26.1.1"; platformTools.version = "34.0.5";