From d7e227af2d2eb7e8db14ca8fb81871119eec8468 Mon Sep 17 00:00:00 2001 From: Kai Bolay Date: Mon, 13 May 2024 15:04:50 -0400 Subject: [PATCH 1/2] Fix version number Version 5.0.0 was changed to 4.4.0 before release. Version 4.4.1 is the current version. --- google-services-plugin/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/google-services-plugin/README.md b/google-services-plugin/README.md index 20dbdde..f114c87 100755 --- a/google-services-plugin/README.md +++ b/google-services-plugin/README.md @@ -21,18 +21,18 @@ Apply the plugin in your app's build.gradle.kts: ``` plugins { - id("com.google.gms.google-services" version "5.0.0" + id("com.google.gms.google-services" version "4.4.1" } ``` Or in build.gradle: ``` plugins { - id 'com.google.gms.google-services' version '5.0.0' + id 'com.google.gms.google-services' version '4.4.1' } ``` -### New in version 5.0.0 +### New in version 4.4.0 #### `google-services.json` location @@ -82,7 +82,7 @@ Add the following to your buildscript classpath, obtained from Google’s [Maven repository](//developer.android.com/studio/build/dependencies#google-maven): ``` -classpath 'com.google.gms:google-services:5.0.0' +classpath 'com.google.gms:google-services:4.4.1' ``` Apply the plugin in your app's build.gradle: From 4af57404604bed33660e018cf196324ac9117dea Mon Sep 17 00:00:00 2001 From: Kai Bolay Date: Mon, 13 May 2024 15:08:04 -0400 Subject: [PATCH 2/2] fix syntax inspired by #288 --- google-services-plugin/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/google-services-plugin/README.md b/google-services-plugin/README.md index f114c87..d46e9b8 100755 --- a/google-services-plugin/README.md +++ b/google-services-plugin/README.md @@ -21,7 +21,7 @@ Apply the plugin in your app's build.gradle.kts: ``` plugins { - id("com.google.gms.google-services" version "4.4.1" + id("com.google.gms.google-services") version "4.4.1" } ```