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 {
|
2024-09-04 18:18:36 +09:00
|
|
|
val kotlinVersion = "2.0.0"
|
2024-08-12 17:02:52 +09:00
|
|
|
extra ["kotlinVersion"] = kotlinVersion
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
classpath (kotlin("gradle-plugin", version = kotlinVersion))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins {
|
2025-07-16 12:56:56 +09:00
|
|
|
id ("com.android.application") version "8.10.1" apply false
|
|
|
|
|
id ("com.android.library") version "8.10.1" apply false
|
2024-09-04 18:18:36 +09:00
|
|
|
id ("io.realm.kotlin") version "2.0.0" apply false
|
2025-03-27 11:50:45 +09:00
|
|
|
id("org.jetbrains.kotlin.android") version "2.0.0" apply false
|
|
|
|
|
|
2024-08-12 17:02:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.register<Delete>("clean") {
|
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
|
}
|