Reputation: 12743
I tried to integrate crashlytics using fabric plugin for distribute builds with different devices.
After integrated, Plugin show me to build and run your application but nothing happen after running application many times. its still showing same message.
Below is message:
Upvotes: 0
Views: 541
Reputation: 58984
Your app is not listed in Fabric Panel by just integrating Fabric in Android Project. You should run that in device and wait for sometime.
Still if you can not see your app at Fabric Panel, You can make a fake/test crash.
You can make forceful crash by
this.stackOverflow();
throw new RuntimeException("This is a crash");
Upvotes: 1