-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.gradle
executable file
·39 lines (35 loc) · 972 Bytes
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.1.2-4'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha3'
classpath 'com.google.gms:google-services:3.0.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
minSdkVersion = 18
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = '25.0.2'
// App dependencies
supportLibraryVersion = '25.3.1'
glideVersion = '3.7.0'
playServicesVersion = '10.2.6'
imageZoomVersion = '1.0.5'
retrofitVersion = '2.0.1'
loggingInterceptorVersion = '3.1.2'
guavaVersion = '20.0'
jobdispatcherVersion = '0.5.0'
stethoVersion = '1.4.2'
multidexVersion = '1.0.1'
firebaseVersion = '10.0.1'
}