-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
45 lines (41 loc) · 978 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
43
44
45
buildscript {
ext.buildConfig = [
'minSdkVersion': 23,
'compileSdkVersion': 29,
'targetSdkVersion': 29,
]
ext.versions = [
'kotlin': '1.3.60',
'koptional': '1.6.0',
'dagger': '2.24',
'rxjava': '2.2.14',
'rxbinding': '3.0.0',
'okhttp': '4.0.1',
'retrofit': '2.6.2',
'chuck': '1.1.0',
'androidJunit5': '1.5.1.0',
'spek': '2.0.8',
'groupie': '2.7.1',
]
ext.names = [
'applicationId': 'cc.femto.architecture.reactive'
]
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:${versions.kotlin}"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}