android_multiviewwer/build.gradle.kts
lunaticbum 853bcc955f ...
2024-08-23 16:03:43 +09:00

20 lines
548 B
Plaintext

// 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 {
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
}
tasks.register<Delete>("clean") {
delete(rootProject.buildDir)
}