Skip to content

Commit

Permalink
using only one build type for f-droid
Browse files Browse the repository at this point in the history
  • Loading branch information
Alen Siljak committed Feb 17, 2019
1 parent df2dee9 commit 8fceffe
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,32 +55,32 @@ android {
release.setRoot('build-types/release')
}

buildTypes {
debug {
applicationIdSuffix ".debug"
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
beta {
applicationIdSuffix ".beta"
versionNameSuffix "-beta"

minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

versionNameSuffix "-beta"
}
release {
minifyEnabled false
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

versionNameSuffix "-release"
}
}
// buildTypes {
// debug {
// applicationIdSuffix ".debug"
//
// minifyEnabled false
// shrinkResources false
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
// }
// beta {
// applicationIdSuffix ".beta"
// versionNameSuffix "-beta"
//
// minifyEnabled false
// shrinkResources false
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
//
// versionNameSuffix "-beta"
// }
// release {
// minifyEnabled false
// shrinkResources false
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
//
// versionNameSuffix "-release"
// }
// }

dataBinding {
enabled = true
Expand Down

0 comments on commit 8fceffe

Please sign in to comment.