-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
49 lines (42 loc) · 1.19 KB
/
build.gradle
File metadata and controls
49 lines (42 loc) · 1.19 KB
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.support_libs_version = '28.0.0'
ext.constraint_version = '1.1.3'
ext.dagger2_version = '2.19'
ext.rxjava2_version = '2.1.12'
ext.rxandroid_version = '2.1.0'
ext.retrofit_version = '2.5.0'
ext.okhttp_version = '3.12.0'
ext.room_version = '1.1.1'
ext.jetpack_version = '1.1.1'
ext.firebase_core_version = '16.0.8'
ext.firebase_ui_auth = '3.2.2'
ext.glide_version = '4.8.0'
ext.gson_version = '2.8.5'
repositories {
google()
jcenter()
maven {
url "https://maven.google.com"
}
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.3.2'
classpath 'com.google.gms:google-services:4.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven {
url "https://mobility.bintray.com/sdk"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}