27 lines
834 B
Plaintext
27 lines
834 B
Plaintext
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
buildscript {
|
|
val kotlinVersion = "2.0.10" // Define here
|
|
val realmVersion = "2.0.0"
|
|
|
|
extra ["kotlinVersion"] = kotlinVersion
|
|
extra ["realmVersion"] = realmVersion
|
|
|
|
dependencies { classpath (kotlin("gradle-plugin", version = kotlinVersion))
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
val kotlinVersion: String by extra
|
|
id ("com.android.application") version "8.10.1" apply false
|
|
id ("com.android.library") version "8.10.1" apply false
|
|
id ("io.realm.kotlin") version "2.0.0" apply false
|
|
id("org.jetbrains.kotlin.android") version kotlinVersion apply false
|
|
id("org.jetbrains.kotlin.plugin.compose") version kotlinVersion apply false
|
|
|
|
}
|
|
|
|
tasks.register<Delete>("clean") {
|
|
delete(rootProject.buildDir)
|
|
}
|