-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
34 lines (30 loc) · 936 Bytes
/
build.gradle
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
buildscript {
apply from: rootProject.file('gradle/repositories.gradle'), to: buildscript
dependencies {
classpath libs.gradle.android
classpath libs.gradle.firebase.crashlytics
classpath libs.gradle.firebase.performance
classpath libs.gradle.gms
classpath libs.gradle.kotlin
classpath libs.gradle.ksp
classpath libs.gradle.molecule
classpath libs.gradle.paparazzi
classpath libs.gradle.shuttle.android
classpath libs.gradle.shuttle.detekt
classpath libs.gradle.sqlDelight
}
}
allprojects {
apply from: rootProject.file('gradle/repositories.gradle')
apply plugin: 'shuttle.detekt'
}
subprojects {
apply plugin: 'com.google.devtools.ksp'
dependencies {
ksp libs.koin.ksp
}
tasks.withType(Test).configureEach {
useJUnitPlatform()
}
}
wrapper.distributionType = Wrapper.DistributionType.ALL