Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix version number #292

Merged
merged 2 commits into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions google-services-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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:
Expand Down
Loading