2024-08-12 17:02:52 +09:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
buildscript {
|
|
|
|
|
val kotlinVersion = "1.9.0"
|
|
|
|
|
extra ["kotlinVersion"] = kotlinVersion
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
classpath (kotlin("gradle-plugin", version = kotlinVersion))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins {
|
2024-08-23 16:03:43 +09:00
|
|
|
id ("io.realm.kotlin") version "1.16.0" apply false
|
|
|
|
|
id ("com.android.application") version "8.2.2" apply false
|
|
|
|
|
id ("com.android.library") version "8.2.2" apply false
|
2024-08-12 17:02:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.register<Delete>("clean") {
|
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
|
}
|