tibbi
tibbi

Reputation: 249

Missing line numbers at playstore crashdumps

I'm developing some Android apps in kotlin, and playstore shows no line numbers at the crashdumps if using proguard. Anyone knows what can be the issue?

Edit: I'm uploading the mapping.txt file

Upvotes: 2

Views: 90

Answers (1)

tibbi
tibbi

Reputation: 249

So apparently adding some new proguard rules fixed it.

-renamesourcefileattribute SourceFile
-keepattributes SourceFile, LineNumberTable

Upvotes: 3

Related Questions