mirror of
https://github.com/googlemaps/android-samples.git
synced 2025-12-08 18:02:20 +00:00
Bumps `kotlin_version` from 1.4.0 to 1.4.10. Updates `kotlin-gradle-plugin` from 1.4.0 to 1.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.4.10/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.4.0...v1.4.10) Updates `kotlin-stdlib` from 1.4.0 to 1.4.10 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.4.10/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.4.0...v1.4.10) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
26 lines
642 B
Groovy
26 lines
642 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.0.1"
|
|
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()
|
|
}
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
} |