Merge branch 'master' into master

This commit is contained in:
Josephine Lim 2017-11-27 18:52:28 +10:00 committed by GitHub
commit 1d150ebd2f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 62 additions and 4 deletions

View file

@ -1,3 +1,4 @@
apply from: '../gitutils.gradle'
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
@ -76,8 +77,11 @@ android {
defaultConfig {
applicationId 'fr.free.nrw.commons'
versionCode 75
versionName '2.6.0'
setProperty("archivesBaseName", "app-commons-v$versionName-" + getBranchName())
minSdkVersion project.minSdkVersion
targetSdkVersion project.targetSdkVersion
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@ -95,6 +99,7 @@ android {
}
debug {
testCoverageEnabled true
versionNameSuffix "-debug-" + getBranchName() + "~" + getBuildVersion()
}
}