-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.gradle
76 lines (62 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
compileSdkVersion = 29
minSdkVersion = 16
targetSdkVersion = 29
buildToolsVersion = '29.0.2'
jdkVersion = 1.8
jdkVersionString = '1.8'
androidGradleVersion = '4.0.1'
kotlinVersion = '1.3.72'
coreVersion = '1.3.1'
multidexVersion = '2.0.1'
objectboxVersion = '2.4.1'
lifecycleVersion = '2.2.0'
coroutinesVersion = '1.3.4'
navigationVersion = '2.3.0'
koinVersion = '2.0.1'
appCompatVersion = '1.1.0'
preferenceVersion = '1.1.0'
legacyVersion = '1.0.0'
materialVersion = '1.1.0'
constraintLayoutVersion = '1.1.3'
workVersion = '2.4.0'
kodaVersion = '2.0.0'
timberVersion = '4.7.1'
junitVersion = '4.13'
androidxJunitVersion = '1.1.1'
espressoVersion = '3.2.0'
mockitoVersion = '3.1.0'
testVersion = '1.2.0'
}
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath "com.android.tools.build:gradle:$androidGradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "io.objectbox:objectbox-gradle-plugin:$objectboxVersion"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
// afterEvaluate {
// extensions.findByName('kapt')?.arguments {
// arg("dagger.formatGeneratedSource", "disabled")
// arg("dagger.gradle.incremental", "enabled")
// }
// }
}
task clean(type: Delete) {
delete rootProject.buildDir
}