-
Notifications
You must be signed in to change notification settings - Fork 36
/
build.gradle
67 lines (52 loc) · 1.58 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.2.0'// Add dependency
classpath 'io.fabric.tools:gradle:1.31.0'
classpath 'com.google.firebase:perf-plugin:1.3.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
google()
maven { url "https://jitpack.io" }
maven { url "https://dl.bintray.com/drummer-aidan/maven/" }
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext{
lifecycle_version = "2.0.0-rc01"
room_version = "2.1.0-alpha02"
rxjava_version = "2.2.6"
rxandroid_version = "2.1.1"
lottie_version = "2.8.0"
circleimageview_version = "2.2.0"
glide_version = "4.7.1"
stetho_version = "1.5.0"
timber_version = "4.7.1"
acra_version = "4.9.2"
butterknife_version = "10.0.0"
material_version = "1.0.0"
work = "1.0.0-alpha10"
//Retrofit
retrofitVersion = '2.3.0'
retrofitAdapterVersion = '1.0.0'
shimmer_version = '0.4.0'
markdown_editor = '0.1.3'
ARCHITECTURE_COMPONENT_VERSION = '1.1.1'
DAGGER_VERSION = '2.15'
}