Skip to content

Commit

Permalink
Separated debug and release builds, and added applicationIdSuffix
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidotarma committed Aug 8, 2021
1 parent a30fe40 commit b346a1b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,15 @@ android {
}

buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
applicationIdSuffix ".est.debug"
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
applicationIdSuffix ".est"
}
}

Expand Down

0 comments on commit b346a1b

Please sign in to comment.