-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathbuild.gradle
45 lines (40 loc) · 1.1 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = '1.3.72'
ext.coreKtxVersion = '1.2.0'
ext.lifecycleVersion = '2.2.0'
ext.cardviewVersion = '1.0.0'
ext.legacyVersion = '1.0.0'
ext.recyclerviewVersion = '1.0.0'
ext.leanbackVersion = '1.0.0'
ext.rxjavaVersion = '2.2.7'
ext.rxandroidVersion = '2.1.1'
ext.rxkotlinVersion = '2.3.0'
ext.retrofitVersion = '2.5.0'
ext.daggerVersion = '2.21'
ext.autodisposeVersion = '1.1.0'
ext.moshiVersion = '1.8.0'
ext.nanohttpdVersion = '2.3.1'
ext.zip4jVersion = '2.1.1'
ext.commonsIoVersion = '2.6'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url 'http://4thline.org/m2'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}