-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
42 lines (35 loc) · 1.07 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
maven {
url "https://oss.sonatype.org/content/groups/public"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'com.github.townsfolk:gradle-release:+'
}
}
allprojects {
repositories {
mavenCentral()
}
}
apply plugin: 'release'
release {
failOnPublishNeeded = false
preTagCommitMessage = '[RELEASE] Released version:'
tagCommitMessage = '[RELEASE] Tagged version:'
newVersionCommitMessage = '[RELEASE] Bumped version for next development iteration:'
}
task updateVersionCode << {
def oldVersionCode = "${project.versionCode}".toInteger()
def newVersionCode = oldVersionCode + 1
if (oldVersionCode != newVersionCode) {
project.ant.propertyfile(file: "gradle.properties") {
entry(key: "versionCode", value: "${newVersionCode}")
}
}
}
updateVersion.dependsOn updateVersionCode