Enable DebuggingΒΆ
If you need to get a better look into what Fabric is doing behind the scenes, feel free to enable debug mode:
final Fabric fabric = new Fabric.Builder(this)
.kits(new Crashlytics())
.debuggable(true)
.build();
Fabric.with(fabric);
For example, you can get insight into whether Answers is enabled and sending events.