forked from waseefakhtar/dose-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (37 loc) · 983 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
35
36
37
38
39
40
41
42
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.hilt.gradle.plugin)
classpath(libs.ktlint.gradle.plugin)
classpath(libs.google.services.gradle.plugin)
classpath(libs.firebase.crashlytics.gradle.plugin)
}
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.jetbrains.kotlin.android) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.ktlint)
}
subprojects {
apply plugin: "org.jlleitschuh.gradle.ktlint"
ktlint {
reporters {
reporter "plain"
reporter "html"
}
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}