-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
36 lines (32 loc) · 984 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
28
29
30
31
32
33
34
35
36
buildscript {
repositories {
gradlePluginPortal()
google()
mavenCentral()
jcenter()
}
dependencies {
val libs = project.extensions.getByType<VersionCatalogsExtension>().named("libs")
as org.gradle.accessors.dm.LibrariesForLibs
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
classpath("com.android.tools.build:gradle:7.0.4")
classpath(libs.gradlePlugin.sqlDelight)
classpath("com.google.gms:google-services:4.3.10")
classpath("com.google.firebase:firebase-crashlytics-gradle:2.8.1")
classpath("com.google.firebase:perf-plugin:1.4.1")
}
}
allprojects {
repositories {
google()
mavenCentral()
}
configurations.all {
resolutionStrategy {
force("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0-native-mt")
}
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}