-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathbuild.gradle
47 lines (41 loc) · 1.11 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = "1.3.72"
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
// 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' }
maven { url 'https://maven.google.com/' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
supportLibrary = "29.0.0"
constraintLayout = "1.1.3"
ethree = "2.0.5"
rxKotlin = "2.3.0"
rxAndroid = "2.1.5"
retrofit = "2.3.0"
gson = "2.8.6"
networkTracker = "0.12.2"
firebase = "11.6.2"
nucleus = "7.0.0"
back4appCore = "1.25.0"
back4appLiveQuery = "1.2.2"
fuel = "2.0.1" //2.2.3
}