google/secrets-gradle-plugin

Incorrect plugin module name in the documentation on Maps Platform site

ahmed3elshaer opened this issue · 1 comments

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
}