5

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:

enter image description here enter image description here enter image description here

But line 4 is just an import:

enter image description here

I'm running Android Studio 3.6.1 on a Linux laptop.

FractalBob
  • 3,225
  • 4
  • 29
  • 40

1 Answers1

1

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.

Vít Kapitola
  • 499
  • 1
  • 5
  • 9