mirror of
https://github.com/googlemaps/android-samples.git
synced 2025-12-08 18:02:20 +00:00
* feat: Adding kotlin sample for MapWithMarker. * Using gradle technique for passing the API key * Adding license headers. * Modify java MapWithMarker to use secure.properties as well. * Adding more license headers * Update build.yml cd * Fix dir. * Using maps_api_key * Update tutorials/kotlin/MapWithMarker/app/src/main/java/com/example/mapwithmarker/MapsMarkerActivity.kt Co-authored-by: Sean Barbeau <sjbarbeau@gmail.com> * Comments * Add missing import Co-authored-by: Sean Barbeau <sjbarbeau@gmail.com>
28 lines
584 B
Groovy
28 lines
584 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
google()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.3'
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven {
|
|
url 'https://maven.google.com'
|
|
}
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|