mirror of
https://github.com/aljazceru/breez-sdk-liquid.git
synced 2025-12-24 01:14:22 +01:00
18 lines
512 B
Plaintext
18 lines
512 B
Plaintext
|
|
buildscript {
|
|
dependencies {
|
|
classpath("com.android.tools.build:gradle:8.1.0")
|
|
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.21")
|
|
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.23.1")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
//trick: for the same plugin versions in all sub-modules
|
|
id("com.android.library").version("8.1.0").apply(false)
|
|
kotlin("multiplatform").version("1.9.21").apply(false)
|
|
}
|
|
|
|
tasks.register("clean", Delete::class) {
|
|
delete(rootProject.buildDir)
|
|
} |