本文介绍了为什么与gitlab集成的fabric(crashlytics)不会将问题发送到gitlab?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在android应用中使用fabric-Crashlytics,并通过

  Fabric.with(new Fabric。 Builder(this)
.kits(new Crashlytics(),new Answers())
.debuggable(true)
.build()
);

我将gitlab与Fabric集成到Fabric的服务挂钩中成功,这意味着当我按下发送测试蓝色时

但是当我通过[ Crashlytics.getInstance()。crash( ); ],我在gitlab中没有任何问题,为什么?



如何解决此问题?

解决方案

我的问题已解决正如我在评论中所说。感谢,感谢:


I use fabric-Crashlytics in my android app and initiate it in Application class via

Fabric.with(new Fabric.Builder(this)
        .kits(new Crashlytics(), new Answers())
        .debuggable(true)
        .build()
    );

I integrated fabric with gitlab in fabric's service hooks successfully, It means when I press "Send Test" blue button on fabric I'll receive an issue in gitlab.

BUT when I force app to crash via [Crashlytics.getInstance().crash();] ,I don't get any issue in gitlab, Why?

How Can I fix this problem?

解决方案

My problem solved as I said in comments.Thanks MikeBonnell for the comment:

这篇关于为什么与gitlab集成的fabric(crashlytics)不会将问题发送到gitlab?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 20:16