mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-22 04:55:29 +03:00
Use GrabVer versioning
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
6d6580afb3
commit
cabd38d75d
2 changed files with 13 additions and 1 deletions
|
@ -1,4 +1,14 @@
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
apply plugin: 'eu.davidea.grabver'
|
||||||
|
|
||||||
|
versioning {
|
||||||
|
major 0
|
||||||
|
minor 1
|
||||||
|
//preRelease "rc1"
|
||||||
|
}
|
||||||
|
|
||||||
|
// For maven repository
|
||||||
|
version = versioning.name
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 26
|
compileSdkVersion 26
|
||||||
|
|
|
@ -5,9 +5,11 @@ buildscript {
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
jcenter()
|
jcenter()
|
||||||
|
maven { url "http://dl.bintray.com/davideas/maven" }
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.0.0-rc1'
|
classpath 'com.android.tools.build:gradle:3.0.0-rc2'
|
||||||
|
classpath 'eu.davidea:grabver:0.6.0'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
|
Loading…
Reference in a new issue