2023-05-12 06:40:19 +00:00
|
|
|
buildscript {
|
2023-08-21 19:32:52 +00:00
|
|
|
ext.kotlin_version = '1.9.0'
|
2023-05-12 06:40:19 +00:00
|
|
|
dependencies {
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-04 03:10:02 +00:00
|
|
|
plugins {
|
2023-09-30 19:33:12 +00:00
|
|
|
id 'com.android.application' version '8.1.2' apply false
|
|
|
|
id 'com.android.library' version '8.1.2' apply false
|
2023-08-21 19:32:52 +00:00
|
|
|
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
|
2023-05-04 03:10:02 +00:00
|
|
|
}
|