-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
build.gradle.kts
27 lines (23 loc) · 881 Bytes
/
build.gradle.kts
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
plugins {
id ("org.jetbrains.kotlin.android") version ("2.0.20") apply false
id ("org.jetbrains.kotlin.plugin.compose") version ("2.0.20") apply false
id ("com.google.dagger.hilt.android") version ("2.52") apply false
id ("com.google.devtools.ksp") version("2.0.21-1.0.25") apply false
id ("com.google.gms.google-services") version ("4.4.2") apply false
id ("com.google.firebase.crashlytics") version ("3.0.2") apply false
}
tasks.register("clean", Delete::class) {
delete(rootProject.layout.buildDirectory)
}
buildscript {
/** Set version for wear & mobile modules **/
val versionCode by extra(10000380)
val versionName by extra("3.8.0")
dependencies {
classpath ("com.android.tools.build:gradle:8.6.1")
classpath ("org.jetbrains.kotlin:kotlin-serialization:2.0.20")
}
repositories {
google()
}
}