-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
124 lines (100 loc) · 2.76 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlinVersion = '1.3.11'
pluginVersion = '3.4.0'
realmVersion = '5.8.0'
gmsVersion = '4.2.0'
fabricVersion = '1.27.1'
}
repositories {
google()
jcenter()
maven {
url 'https://maven.fabric.io/public'
}
}
dependencies {
classpath "com.android.tools.build:gradle:$pluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "io.realm:realm-gradle-plugin:$realmVersion"
classpath "com.google.gms:google-services:$gmsVersion"
classpath "io.fabric.tools:gradle:$fabricVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
subprojects {
repositories {
mavenCentral()
maven { url 'http://devrepo.kakao.com:8088/nexus/content/groups/public/' }
}
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://github.com/WickeDev/stetho-realm/raw/master/maven-repo' }
maven {
url 'https://maven.google.com/'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 21
targetSdkVersion = 28
compileSdkVersion = 28
buildToolsVersion = '28.0.3'
//App dependencies
androidXVersion = '1.1.0-alpha01'
googleMaterialVersion = '1.1.0-alpha03'
junitVersion = '4.12'
runnerVersion = '1.1.1'
espressoVersion = '3.1.1'
constraintLayoutVersion = '2.0.0-alpha3'
//lifecycle
lifecycleExtensionVersion = '1.1.0'
//rx
rxJavaVersion = '2.2.4'
rxAndroidVersion = '2.1.0'
rxJavaAdapterVersion = '2.3.0'
//glide
glideVersion = '4.8.0'
//retrofit2
retrofitVersion = '2.0.0-beta3'
//okHttp
okHttpVersion = '3.12.1'
//gSon
gsonVersion = '2.4.0'
//stetho
stethoVersion = '1.5.0'
stethoRealmVersion = '2.2.2'
//google-play-services
gmsLocationVersion = '16.0.0'
gmsMapsVersion = '16.1.0'
gmsMapUtilVersion = '0.5'
//CircleImageView
circleImageViewVersion = '3.0.0'
//material-range-bar
materialRangeBarVersion = '1.4.4'
//tedPermission
tedPermissionVersion = '2.2.2'
tedBottomPickerVersion = '1.1.0'
//lottie
lottieVersion = '3.0.0-beta1'
//Realm
realmVersion = '5.8.0'
//MaterialEditText
materialEditText = '2.1.4'
//firebase
firebaseVersion = '16.0.7'
//crashlytics
crashlyticsVersion = '2.9.9'
//FireBase Cloud Messaging
fcmVersion = '17.3.4'
//Livebus
liveBusVersion = '0.0.2'
}