-
Notifications
You must be signed in to change notification settings - Fork 34
/
build.gradle
54 lines (48 loc) · 1.44 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* Copyright (c) 2019 . Wilberforce Uwadiegwu. All Rights Reserved.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.61'
ext.nav_version = '2.2.0'
ext.glide_version = '4.11.0'
ext.arch_version = '1.1.1'
ext.leakcanary_version = '2.0-beta-3'
ext.coroutines_version = '1.2.0'
ext.exoplayer_version = '2.10.4'
ext.koin_version = '2.0.1'
ext.roomVersion = '2.2.3'
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version"
classpath 'com.google.gms:google-services:4.3.3'
classpath 'io.fabric.tools:gradle:1.31.0'
classpath 'com.quinn.hunter:hunter-debug-plugin:0.9.5'
classpath 'com.quinn.hunter:hunter-transform:0.9.3'
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
}
}
afterEvaluate {
tasks.withType(JavaCompile.class) {
options.compilerArgs << "-Xmaxerrs" << "500"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}