google / google/secrets-gradle-plugin
Incorrect plugin module name in the documentation on Maps Platform site
- Dominant language
- Kotlin
- Stars
- 1.3k
- Forks
- 122
- PR merge metrics
- No merged PRs in 30d
Description
While following the documentation to use Secrets Gradle Plugin for Android in Maps platform site.
https://developers.google.com/maps/documentation/android-sdk/config#step_3_add_your_api_key_to_the_project
I found this to be the plugin module name (project-level `build.gradle` file variant)
```
plugins {
// ...
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin' version '2.0.1' apply false
}
```
However this is only the Gradle plugin group name, It's missing the library name
Here is the correct variant
```
plugins {
// ...
id 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin' version '2.0.1' apply false
}
```
Contributor guide
Assessment
This issue has not been assessed yet.