Skip to content

Commit

Permalink
Bump version to v03.00.00 for F-Droid build
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikhail Basov (NeedleFile) committed Oct 23, 2018
1 parent 1a5b7c6 commit 1c2a389
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions app/build.gradle
Expand Up @@ -52,8 +52,20 @@ android {
// End of strings reserved for F-Droid patch
minSdkVersion 16
targetSdkVersion 26
versionCode 20100
versionName "02.01.00"
versionCode 30000
versionName "03.00.00"
}

flavorDimensions "version"
productFlavors {
gpm {
dimension "version"
applicationIdSuffix ".gpm"
}
fdroid {
dimension "version"
applicationIdSuffix ".fdroid"
}
}

buildTypes {
Expand All @@ -62,15 +74,15 @@ android {
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
zipAlignEnabled true
applicationIdSuffix '.gpm'
// applicationIdSuffix '.gpm'
versionNameSuffix "r-g" + current_commit
signingConfig signingConfigs.release
}
beta {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
applicationIdSuffix '.gpm'
// applicationIdSuffix '.gpm'
versionNameSuffix "b-g" + current_commit
debuggable false
signingConfig signingConfigs.debug
Expand Down

0 comments on commit 1c2a389

Please sign in to comment.