为什么集成 fabric(crashlytics) 与 gitlab 不会将问题发送到 gitlab?
Why integrated fabric(crashlytics) with gitlab does not send issues to gitlab?
我在我的 android 应用程序中使用 fabric-Crashlytics,并通过
在应用程序 class 中启动它
Fabric.with(new Fabric.Builder(this)
.kits(new Crashlytics(), new Answers())
.debuggable(true)
.build()
);
我在 fabric 的服务挂钩中成功地将 fabric 与 gitlab 集成,这意味着当我在 fabric 上按 "Send Test" 蓝色按钮时,我会在 gitlab 中收到一个问题。
但是当我通过 [Crashlytics.getInstance().crash();
] 强制应用程序崩溃时,我在 gitlab 中没有遇到任何问题,为什么?
我该如何解决这个问题?
我的问题按照我在 comments.Thanks MikeBonnell for :
中所说的解决了
Mike from Fabric here. What impact level did you choose on the integration? Only if the impact level was set to 1 would a new issue be triggered. Also, this needs to be a brand new issue, that is if you've used that test crash before, then a new issue wouldn't be sent over.
我在我的 android 应用程序中使用 fabric-Crashlytics,并通过
在应用程序 class 中启动它Fabric.with(new Fabric.Builder(this)
.kits(new Crashlytics(), new Answers())
.debuggable(true)
.build()
);
我在 fabric 的服务挂钩中成功地将 fabric 与 gitlab 集成,这意味着当我在 fabric 上按 "Send Test" 蓝色按钮时,我会在 gitlab 中收到一个问题。
但是当我通过 [Crashlytics.getInstance().crash();
] 强制应用程序崩溃时,我在 gitlab 中没有遇到任何问题,为什么?
我该如何解决这个问题?
我的问题按照我在 comments.Thanks MikeBonnell for
Mike from Fabric here. What impact level did you choose on the integration? Only if the impact level was set to 1 would a new issue be triggered. Also, this needs to be a brand new issue, that is if you've used that test crash before, then a new issue wouldn't be sent over.