com.google.android.libraries.mapsplatform.v3-beta-migration
Owner: Google Maps Bot
A Gradle plugin to migrate from Maps SDK V3 BETA to Maps SDK in Google Play Services.
https://github.com/googlemaps/android-v3-migration
Sources: https://github.com/googlemaps/android-v3-migration
Version 0.2.0 (latest)
Created 14 October 2021.
A Gradle plugin to migrate from Maps SDK V3 BETA to Maps SDK in Google Play Services.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.google.android.libraries.mapsplatform.v3-beta-migration") version "0.2.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.google.android.libraries.mapsplatform.v3-beta-migration:com.google.android.libraries.mapsplatform.v3-beta-migration.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.google.android.libraries.mapsplatform.v3-beta-migration") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.google.android.libraries.mapsplatform.v3-beta-migration:com.google.android.libraries.mapsplatform.v3-beta-migration.gradle.plugin:0.2.0") } } apply(plugin = "com.google.android.libraries.mapsplatform.v3-beta-migration")
- Applying plugins to all subprojects .