Skip to content
Merged
Changes from all commits
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
14 changes: 12 additions & 2 deletions android-core/proguard.pro
Original file line number Diff line number Diff line change
Expand Up @@ -208,11 +208,21 @@
-keep class com.mparticle.rokt.RoktLayoutDimensionCallBack { *; }
-keep class com.mparticle.rokt.RoktOptions { *; }

# Preserve annotation classes
-keep class androidx.annotation.NonNull { *; }
-keep class androidx.annotation.Nullable { *; }
-keepclassmembers class com.mparticle.** {
@androidx.annotation.NonNull *;
@androidx.annotation.Nullable *;
}

# Preserve all method signatures in the Rokt class to prevent overload resolution issues
-keepclassmembers class com.mparticle.Rokt {
public void selectPlacements(...);
public void purchaseFinalized(...);
*;
}
Comment thread
thomson-t marked this conversation as resolved.
-keepclassmembers class com.mparticle.KitIntegration$RoktListener* {
*;
}
-keep public class com.mparticle.audience.* {
*;
}
Expand Down
Loading