Bumps [org.jetbrains.kotlin.android](https://github.com/JetBrains/kotlin) from 2.0.0 to 2.0.10. - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v2.0.0...v2.0.10) --- updated-dependencies: - dependency-name: org.jetbrains.kotlin.android dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
262 B
Groovy
12 lines
262 B
Groovy
buildscript {
|
|
ext.kotlin_version = '2.0.10'
|
|
}
|
|
|
|
plugins {
|
|
id "com.android.application" version '8.2.2' apply false
|
|
id "org.jetbrains.kotlin.android" version "$kotlin_version" apply false
|
|
}
|
|
|
|
task clean(type: Delete) {
|
|
delete rootProject.buildDir
|
|
}
|