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)
0.2.0
Created 14 October 2021.
A Gradle plugin to migrate from Maps SDK V3 BETA to Maps SDK in Google Play Services.
Using the plugins DSL:
plugins {
id("com.google.android.libraries.mapsplatform.v3-beta-migration") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.google.android.libraries.mapsplatform.v3-beta-migration:v3-beta-migration:0.2.0")
}
}
apply(plugin = "com.google.android.libraries.mapsplatform.v3-beta-migration")
Using the plugins DSL:
plugins {
id "com.google.android.libraries.mapsplatform.v3-beta-migration" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.google.android.libraries.mapsplatform.v3-beta-migration:v3-beta-migration:0.2.0"
}
}
apply plugin: "com.google.android.libraries.mapsplatform.v3-beta-migration"