12 lines
358 B
Groovy
12 lines
358 B
Groovy
|
buildscript {
|
||
|
ext.kotlin_version = '1.9.0'
|
||
|
dependencies {
|
||
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
plugins {
|
||
|
id 'com.android.application' version '8.1.2' apply false
|
||
|
id 'com.android.library' version '8.1.2' apply false
|
||
|
id 'org.jetbrains.kotlin.android' version "$kotlin_version" apply false
|
||
|
}
|