2024-08-12 17:02:52 +09:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
2025-09-07 23:14:03 +09:00
|
|
|
|
2024-08-12 17:02:52 +09:00
|
|
|
buildscript {
|
2025-09-07 23:14:03 +09:00
|
|
|
val kotlinVersion = "2.0.10" // Define here
|
|
|
|
|
val realmVersion = "2.0.0"
|
|
|
|
|
|
2024-08-12 17:02:52 +09:00
|
|
|
extra ["kotlinVersion"] = kotlinVersion
|
2025-09-07 23:14:03 +09:00
|
|
|
extra ["realmVersion"] = realmVersion
|
2024-08-12 17:02:52 +09:00
|
|
|
|
2025-09-07 23:14:03 +09:00
|
|
|
dependencies { classpath (kotlin("gradle-plugin", version = kotlinVersion))
|
2024-08-12 17:02:52 +09:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
plugins {
|
2025-09-07 23:14:03 +09:00
|
|
|
val kotlinVersion: String by extra
|
|
|
|
|
id ("com.android.application") version "8.6.0" apply false
|
|
|
|
|
id ("com.android.library") version "8.6.0" apply false
|
2024-09-04 18:18:36 +09:00
|
|
|
id ("io.realm.kotlin") version "2.0.0" apply false
|
2025-09-07 23:14:03 +09:00
|
|
|
id("org.jetbrains.kotlin.android") version kotlinVersion apply false
|
2025-03-27 11:50:45 +09:00
|
|
|
|
2024-08-12 17:02:52 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
tasks.register<Delete>("clean") {
|
|
|
|
|
delete(rootProject.buildDir)
|
|
|
|
|
}
|