forked from andriawan24/hydration-tracker-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·25 lines (21 loc) · 900 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.43.1'
classpath 'com.google.gms:google-services:4.3.13'
classpath 'org.jacoco:org.jacoco.core:0.8.8'
classpath "com.github.ben-manes:gradle-versions-plugin:0.39.0"
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.0"
}
}
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
id 'org.jetbrains.dokka' version '1.7.0' apply false
id 'io.gitlab.arturbosch.detekt' version '1.10.0' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply from: "scripts/dependencies.gradle"