-
Notifications
You must be signed in to change notification settings - Fork 426
/
build.gradle
33 lines (30 loc) · 1.05 KB
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.72'
ext.safeargs_version = '2.3.0'
System.properties['com.android.build.gradle.overrideVersionCheck'] = 'true'
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$safeargs_version"
classpath("org.jetbrains.dokka:dokka-gradle-plugin:1.4.0")
// TODO AC-861
//classpath 'com.dicedmelon.gradle:jacoco-android:0.1.4'
classpath "com.hiya:jacoco-android:0.2"
// Hilt Plugin
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.42'
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}