Skip to content

Commit

Permalink
fix: Missing Proguard rules for R8 in full mode (#1196)
Browse files Browse the repository at this point in the history
  • Loading branch information
azlekov committed Aug 25, 2023
1 parent f9843c5 commit 7db0965
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions parse/release-proguard.pro
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
-keep @com.parse.ParseClassName class com.parse.*
-keepnames class com.parse.** { *; }
-keepclassmembers public class * extends com.parse.** {
public <init>(...);
}

# Required for Parse
-keepattributes *Annotation*
-keepattributes Signature
# https://github.com/square/okio#proguard
-dontwarn okio.**

# Retracing stacktraces
-keepattributes LineNumberTable,SourceFile
-renamesourcefileattribute SourceFile

0 comments on commit 7db0965

Please sign in to comment.