-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (33 loc) · 977 Bytes
/
build.gradle
File metadata and controls
40 lines (33 loc) · 977 Bytes
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
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.0'
classpath 'com.github.ben-manes:gradle-versions-plugin:0.14.0'
classpath 'com.novoda:build-properties-plugin:1.2.1'
classpath 'com.github.triplet.gradle:play-publisher:1.2.0-beta1'
classpath 'io.fabric.tools:gradle:1.22.1'
}
}
apply plugin: 'com.github.ben-manes.versions'
allprojects {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
}
ext {
ci = "true" == System.getenv("CI")
versionMajor = 1
versionMinor = 3
versionBuild = 1
versionCode = versionMajor * 10000 + versionMinor * 1000 + versionBuild
versionName = "${versionMajor}.${versionMinor}"
compileSdkVersion = 25
buildToolsVersion = '25.0.2'
}
task clean(type: Delete) {
delete rootProject.buildDir
}