Skip to content

Commit 7db0965

Browse files
authored
fix: Missing Proguard rules for R8 in full mode (#1196)
1 parent f9843c5 commit 7db0965

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

parse/release-proguard.pro

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
-keep @com.parse.ParseClassName class com.parse.*
12
-keepnames class com.parse.** { *; }
3+
-keepclassmembers public class * extends com.parse.** {
4+
public <init>(...);
5+
}
26

37
# Required for Parse
48
-keepattributes *Annotation*
59
-keepattributes Signature
6-
# https://github.com/square/okio#proguard
7-
-dontwarn okio.**
10+
11+
# Retracing stacktraces
12+
-keepattributes LineNumberTable,SourceFile
13+
-renamesourcefileattribute SourceFile

0 commit comments

Comments
 (0)