0

I am using flurry in my android app, but flurry does not provide perfect crash report compare to crashlytics in my opinion. Is there any way to implement both in my app? I try to implementing crashlytics after implement flurry inside my app but it' not added to my app, crashlytics not launch my app if flurry is implemented in my app.

Cœur
  • 37,241
  • 25
  • 195
  • 267
appukrb
  • 1,507
  • 4
  • 24
  • 53

1 Answers1

0

It works for me. I start it in the onCreate of the application using these lines:

    Crashlytics.start(this);
    Flurry.initialize(this);

I am using Crashlytics v1.1.10 and Flurry at v3.2.2

Andrew Alcock
  • 19,401
  • 4
  • 42
  • 60