I've been receiving a number of crash reports from a number of users on different devices, all happening on line 4 of my app:
But line 4 is just an import:
I'm running Android Studio 3.6.1 on a Linux laptop.
I've been receiving a number of crash reports from a number of users on different devices, all happening on line 4 of my app:
But line 4 is just an import:
I'm running Android Studio 3.6.1 on a Linux laptop.
In my case the problem was not in Firebase but in R8 minifying. As pointed here try to add -keepattributes LineNumberTable,SourceFile
to your proguard.pro
file. It should help.