mirror of
https://github.com/LiveFastEatTrashRaccoon/RaccoonForLemmy.git
synced 2025-02-02 16:56:54 +01:00
12 lines
386 B
Plaintext
12 lines
386 B
Plaintext
|
plugins {
|
||
|
//trick: for the same plugin versions in all sub-modules
|
||
|
id("com.android.application").version("7.4.2").apply(false)
|
||
|
id("com.android.library").version("7.4.2").apply(false)
|
||
|
kotlin("android").version("1.8.10").apply(false)
|
||
|
kotlin("multiplatform").version("1.8.10").apply(false)
|
||
|
}
|
||
|
|
||
|
tasks.register("clean", Delete::class) {
|
||
|
delete(rootProject.buildDir)
|
||
|
}
|