Chris Arriola e6cf1b0202
feat: Add missing Kotlin samples (#428)
* Gradle bump and rename CloseInfoWindowDemoActivity

* Adding CameraClampingDemoActivity.

* Fix build error.

* Add location source.
2021-01-25 17:03:15 -08:00

31 lines
696 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.4.10'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.2'
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 {
google()
jcenter()
flatDir {
dirs 'libs'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}