Skip to content

Commit

Permalink
- update progaurd rules
Browse files Browse the repository at this point in the history
 -- **note** this is a breaking change. check the wiki for the v2 update guide if updating to this version
- version bump v2.1.0
  • Loading branch information
lmj0011 committed Sep 28, 2020
1 parent 78ec07f commit ae630c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ android {
applicationId "name.lmj0011.courierlocker"
minSdkVersion 21
targetSdkVersion 29
versionCode 70
versionCode 75
versionName "2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
Expand Down Expand Up @@ -54,7 +54,7 @@ android {
productFlavors {
dev { // active development/testing
applicationIdSuffix ".dev"
versionNameSuffix ".0.0-dev"
versionNameSuffix ".1.0-dev"
resValue("string", "app_name", "Courier Locker (dev)")
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher_dev",
Expand All @@ -64,7 +64,7 @@ android {
}
beta { // public testing
applicationIdSuffix ".beta"
versionNameSuffix ".0.0-beta"
versionNameSuffix ".1.0-beta"
resValue("string", "app_name", "Courier Locker (beta)")
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher_beta",
Expand All @@ -74,7 +74,7 @@ android {
}
prod { // official release
applicationIdSuffix ".prod"
versionNameSuffix ".0.0"
versionNameSuffix ".1.0"
resValue("string", "app_name", "Courier Locker")
manifestPlaceholders = [
appIcon: "@mipmap/ic_launcher",
Expand Down
2 changes: 1 addition & 1 deletion app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@
##---------------Begin: proguard configuration for Gson ----------
# Application classes that will be serialized/deserialized over Gson
#noinspection ShrinkerUnresolvedReference
#-keep class name.lmj0011.courierlocker.database.** { *; }
-keep class name.lmj0011.courierlocker.database.** { *; }
##---------------End: proguard configuration for Gson ----------

0 comments on commit ae630c3

Please sign in to comment.