From 60abfbf5c867b365ac74d70cc0f92ce48389d284 Mon Sep 17 00:00:00 2001 From: Sean Barbeau Date: Mon, 25 Apr 2022 18:26:15 -0400 Subject: [PATCH 1/2] docs: Add compose version requirement to installation Users are installing older version of Compose and hitting problems - see: * https://github.com/googlemaps/android-maps-compose/issues/67#issuecomment-1107847164 * https://discordapp.com/channels/676948200904589322/939194796138975263/966366331492524102 This change makes it clearer in the installation instructions what the current base Compose requirement is without needing to look through the release notes. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 685b4deb..9e57c046 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,9 @@ dependencies { // Make sure to also include the latest version of the Maps SDK for Android implementation 'com.google.android.gms:play-services-maps:18.0.2' + + // Also include Compose version `1.2.0-alpha03` or higher - for example: + implementation "androidx.compose.foundation:foundation:1.2.0-alpha03" } ``` From 6704d9abd5b536f2a332369ae5dcaa3128f069dd Mon Sep 17 00:00:00 2001 From: Sean Barbeau Date: Mon, 25 Apr 2022 18:27:44 -0400 Subject: [PATCH 2/2] chore: Fix formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e57c046..be38020c 100644 --- a/README.md +++ b/README.md @@ -172,7 +172,7 @@ dependencies { implementation 'com.google.android.gms:play-services-maps:18.0.2' // Also include Compose version `1.2.0-alpha03` or higher - for example: - implementation "androidx.compose.foundation:foundation:1.2.0-alpha03" + implementation "androidx.compose.foundation:foundation:1.2.0-alpha03" } ```