google / secrets-gradle-plugin

A Gradle plugin for providing your secrets to your Android project.
Apache License 2.0
1.13k stars 99 forks source link

Incorrect plugin module name in the documentation on Maps Platform site #61

Open ahmed3elshaer opened 1 year ago

ahmed3elshaer commented 1 year ago

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
}
arriolac commented 1 year ago

FYI @wangela @amuramoto