Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ android {

buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
minifyEnabled false
}
}

Expand Down
6 changes: 6 additions & 0 deletions android/proguard-rules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,10 @@
-keep class com.fasterxml.jackson.** {*;}
# Logback
-keep class ch.qos.** { *; }

# Mail classes (Logback SMTP appender)
-dontwarn javax.mail.**
-dontwarn javax.mail.internet.**
-dontwarn javax.activation.**

##---------------End: proguard configuration ----------