We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)
build.gradle
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 }
The text was updated successfully, but these errors were encountered:
FYI @wangela @amuramoto
Sorry, something went wrong.
No branches or pull requests
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)However this is only the Gradle plugin group name, It's missing the library name
Here is the correct variant
The text was updated successfully, but these errors were encountered: