Skip to content
This repository was archived by the owner on Dec 16, 2023. It is now read-only.

Commit 4f3c629

Browse files
committed
Fix proguard config
Due to proguard, new accounts could not be created.
1 parent 1e985bb commit 4f3c629

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

core/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ android {
2525

2626
buildTypes {
2727
release {
28-
minifyEnabled false
29-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
28+
minifyEnabled true
29+
consumerProguardFiles 'proguard-rules.pro'
3030
}
3131
}
3232

core/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
############################
22
# App
33
############################
4-
-keep class com.marknjunge.core.model.OrderItem implements android.os.Parcelable {
4+
-keep class com.marknjunge.core.model.** {
55
*;
66
}
77

0 commit comments

Comments
 (0)