Fabric Crashlytics - Aggregate data from different projects

醉酒当歌 提交于 2019-12-23 09:59:52

问题


I have several customized Apps which have different package name/bundle ID. Crash data will be sent to different apps in Fabric Crashlytics dashboard (I guess they have different package name), even if the crash data are same(same type, same exceptions...). My question is: is that possible or is there a way to get the aggregated crash data from these Apps? Thanks.


回答1:


Mike from Crashlytics and Fabric here.

If you want multiple apps to flow into a single "parent" app on your Fabric dashboard, then here's what you need to do.

First ensure that the parent app has been added to your Fabric dashboard. Then you want to use something like this, depending on the kits of Fabric that you're using:

Fabric.with(new Fabric.Builder().kits(new Crashlytics(), ...).appIdentifier("parent app identifier").build());

One important note is that if you're using Proguard or Dexguard, de-obfuscation will not work correctly on crashes from the child app. Second, currently this only supported on Android.



来源:https://stackoverflow.com/questions/34032726/fabric-crashlytics-aggregate-data-from-different-projects

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!