forked from stepstone-tech/android-material-stepper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
49 lines (42 loc) · 1.46 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
buildscript {
ext.gradleAndroidVersion = '2.3.2'
ext.kotlinVersion = '1.1.2-3'
ext.bintrayVersion = '1.4'
ext.mavenGradlePluginVersion = '1.4.1'
repositories {
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleAndroidVersion"
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:$bintrayVersion"
classpath "com.github.dcendents:android-maven-gradle-plugin:$mavenGradlePluginVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
allprojects {
repositories {
jcenter()
mavenCentral()
}
}
configure(allprojects) {
/* Android config and dependency versions */
ext {
androidMinSdkVersion = 14
androidTargetSdkVersion = 25
androidCompileSdkVersion = 25
androidBuildToolsVersion = '25.0.2'
androidSupportLibraryVersion = '25.3.1'
junitVersion = '4.12'
mockitoVersion = '2.7.21'
mockitoKotlinVersion = '1.4.0'
robolectricVersion = '3.3.1'
assertjVersion = '1.1.1'
/* Sample only */
butterknifeVersion = '8.5.1'
calligraphyVersion = '2.2.0'
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}