-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
43 lines (34 loc) · 855 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
40
41
42
43
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
}
}
allprojects {
repositories {
jcenter()
}
}
ext {
appVersion = [1, 0, 0]
appVersionName = appVersion.join('.')
appVersionCode = appVersion.join().toInteger()
sampleAppVersion = [0, 0, 1].join().toInteger()
buildTools = '25.0.0'
targetSdk = 25
minSdk = 21
javaVersion = JavaVersion.VERSION_1_8
supportLibrary = '25.2.0'
playServices = '9.8.0'
butterknife = '8.5.1'
retrofit = '2.2.0'
autoValue = '1.4.1'
autoValueGson = '0.4.6'
autoValueParcel = '0.2.5'
}