com.google.android.libraries.mapsplatform.v3-beta-migration
所有者: Google Maps Bot
一个 Gradle 插件,用于将 Maps SDK V3 Beta 迁移到 Google Play Services 中的 Maps SDK。
https://github.com/googlemaps/android-v3-migration
源: https://github.com/googlemaps/android-v3-migration
版本 0.2.0 (最新)
0.2.0
创建于 2021 年 10 月 14 日。
一个 Gradle 插件,用于将 Maps SDK V3 Beta 迁移到 Google Play Services 中的 Maps SDK。
使用 plugins DSL
plugins {
id("com.google.android.libraries.mapsplatform.v3-beta-migration") version "0.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/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")
使用 plugins DSL
plugins {
id "com.google.android.libraries.mapsplatform.v3-beta-migration" version "0.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/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"