通过Firebase使用Crashlytics时不支持方法logCustom

问题描述 投票:0回答:1

我在将错误数据记录到Crashlytics / Firebase时遇到问题

static void on_Error_Response(Context theContext, VolleyError error, String url) {
...
Answers.getInstance().logCustom(new CustomEvent("UEvents error")
                .putCustomAttribute("url", url)
                .putCustomAttribute("error message", msg));
}

我收到错误消息:

Method logCustom is not supported when using Crashlytics through Firebase

当然,我无法通过https://console.firebase.google.com/检索该数据

android firebase crashlytics
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.