-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
46 lines (38 loc) · 898 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
44
45
46
buildscript {
ext.support_version = '23.4.0'
ext.kotlin_version = '1.0.2'
ext.junit_version = '4.12'
ext.mockito_version = '1.10.19'
ext.espresso_version = '2.2.2'
ext.rxjava_version = '1.1.5'
ext.kotlin_mockito_version = '0.4.1'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
int commonVersionCode() { return 1000001 }
String commonVersionName() { return "1.0.1" }
int commonCompileSdkVersion() {
return 23
}
int commonTargetSdkVersion() {
return commonCompileSdkVersion()
}
int commonMinSdkVersion() {
return 16
}
String commonBuildToolsVersion() {
return '23.0.3'
}