-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
96 lines (77 loc) · 2.47 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// build dependencies
androidPluginVersion = '4.0.0'
googleServicesVersion = '4.3.3'
// app dependencies
androidxAppCompatVersion = '1.1.0'
androidxCardViewVersion = '1.0.0'
androidxConstraintLayoutVersion = '2.0.0-beta7'
androidxRecyclerViewVersion = '1.1.0'
androidxLifecycleVersion = '2.2.0'
androidxViewPager2Version = '1.0.0'
androidxPreference = '1.1.1'
androidxSwipeRefresh = '1.0.0'
androidxPagingVersion = '2.1.2'
materialVersion = '1.1.0'
// database
roomVersion = '2.2.5'
// network
okHttpVersion = '4.7.2'
gsonVersion = '2.8.6'
retrofitVersion = '2.9.0'
// firebase
firebaseCrashlyticsGradleVersion = '2.1.1'
firebasePerformanceGradleVersion = '1.3.1'
firebaseAnalyticsVersion = '17.4.3'
firebaseCrashlyticsVersion = '17.0.1'
firebasePerformanceVersion = '19.0.7'
// dexter
dexterVersion = '6.1.2'
// rxJava
rxJavaVersion = '2.2.19'
rxAndroidVersion = '2.1.1'
// logging
timberVersion = '4.7.1'
// images
glideVersion = '4.11.0'
// dagger2
daggerVersion = '2.28'
// test dependencies
runnerVersion = '1.0.1'
truthVersion = '1.0.1'
testExtJunit = '1.1.1'
uiAutomatorVersion = '2.2.0'
workVersion = '2.3.4'
coreTestingVersion = '2.1.0'
espressoVersion = '3.2.0'
junitVersion = '4.13'
}
repositories {
google()
jcenter()
mavenCentral()
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath "com.android.tools.build:gradle:${androidPluginVersion}"
classpath "com.google.gms:google-services:${googleServicesVersion}"
// firebase
classpath "com.google.firebase:perf-plugin:${firebasePerformanceGradleVersion}"
classpath "com.google.firebase:firebase-crashlytics-gradle:${firebaseCrashlyticsGradleVersion}"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}