-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
27 lines (23 loc) · 782 Bytes
/
build.gradle.kts
File metadata and controls
27 lines (23 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
buildscript {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
val sqlDelightVersion = "1.5.5"
dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.21")
classpath("com.squareup.sqldelight:gradle-plugin:$sqlDelightVersion")
classpath("com.android.tools.build:gradle:7.2.2")
}
}
plugins {
//trick: for the same plugin versions in all sub-modules
id("com.android.application").version("8.2.0-alpha07").apply(false)
id("com.android.library").version("8.2.0-alpha07").apply(false)
kotlin("android").version("1.8.21").apply(false)
kotlin("multiplatform").version("1.8.21").apply(false)
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}