Skip to content

Commit 69d8a8a

Browse files
Updated proguard rule for public method
1 parent 6861bd9 commit 69d8a8a

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

android-core/proguard.pro

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -271,11 +271,12 @@
271271
-keepclassmembers class * {
272272
@kotlin.Metadata <methods>;
273273
}
274-
-keepclassmembers class com.mparticle.Rokt {
275-
<init>(...);
276-
void *(...);
277-
void *$default(...);
278-
<fields>;
274+
275+
-keep public class com.mparticle.Rokt {
276+
public <init>(...);
277+
public void *(...);
278+
public void *$default(...);
279+
public <fields>;
279280
}
280281

281282
-keep interface com.mparticle.MpRoktEventCallback { *; }

0 commit comments

Comments
 (0)