You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When enabling the full mode of R8, I directly get a crash when starting the app.
After some debugging, I found out that the problem is a reflection access through StubCreator. With full mode enabled, it modifies the ErrorReporter interface and turns it into something else (not important into what I guess, just not an interface anymore).
Expected behavior
The call should not fail.
Version
Android: 12 (32)
ACRA: 5.9.1
Possible solution
I got my app working again, by adding a rule to keep the ErrorReporter interface. Probably this should be added to the ProGuard rules, bundled with the acra releases.
-keep interface org.acra.ErrorReporter
The text was updated successfully, but these errors were encountered:
Describe the bug
When enabling the full mode of R8, I directly get a crash when starting the app.
After some debugging, I found out that the problem is a reflection access through
StubCreator
. With full mode enabled, it modifies theErrorReporter
interface and turns it into something else (not important into what I guess, just not an interface anymore).Expected behavior
The call should not fail.
Version
Possible solution
I got my app working again, by adding a rule to keep the
ErrorReporter
interface. Probably this should be added to the ProGuard rules, bundled with the acra releases.The text was updated successfully, but these errors were encountered: