Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Workaround proguard problems (-keep *)
Browse files Browse the repository at this point in the history
  • Loading branch information
ILIYANGERMANOV committed Aug 22, 2023
1 parent 42dc478 commit f681e5f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 7 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@
# hide the original source file name.
#-renamesourcefileattribute SourceFile

-keep class * { *; }
-dontwarn java.beans.**
-dontwarn javax.script.**
-dontwarn javax.servlet.**
-dontwarn org.apache.**
-dontwarn coil.**

#Fix Crashig "Donate" scree (Jetpack Compose internal crash)
-keep class com.ivy.wallet.ui.donate.** { *; }
-keep class com.ivy.frp.** { *; }
Expand Down
3 changes: 1 addition & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Speed-up Gradle Builds! (OPTIMIZATION)
org.gradle.jvmargs=-Xmx1536m -Dfile.encoding=UTF-8

org.gradle.jvmargs=-Xmx4096m

0 comments on commit f681e5f

Please sign in to comment.