mirror of
https://github.com/googlemaps/android-samples.git
synced 2025-12-08 18:02:20 +00:00
* chore: Modify how API key is provided * Creating kotlin version of Polygons. * Add region tag for maps_poly_activity_get_map_async * Add region tag for maps_poly_activity_on_map_ready * Add region tag for maps_poly_activity_add_polyline * Add region tag for maps_poly_activity_add_polyline_set_tag * Add regiontag maps_poly_activity_style_polyline * Add region tag for maps_poly_activity_on_polyline_click * Add region tag for maps_poly_activity_style_polygon * Addressing comments.
28 lines
644 B
Groovy
28 lines
644 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.3.72'
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.3'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|