我正在尝试使用 Google Analytics(分析) for Firebase记录不同的默认事件。我在代码中添加了一行以使应用程序崩溃。当我按下Toast按钮时,由于onClickListener
内部存在throw,应用程序崩溃。根据Firebase文档,崩溃应记录默认的“ app_exception”。但是我无法在事件仪表板中看到该事件。请提出记录此事件的其他方法。
我的代码如下:
mFirebaseAnalytics = FirebaseAnalytics.getInstance(this);
mFirebaseAnalytics.setAnalyticsCollectionEnabled(true);
bundle = new Bundle();
bundle.putString("App_launched","Launch sucessfull");
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT,bundle);
toastBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Bundle bundle=new Bundle();
bundle.putString("Toast_launched","New Toast");
mFirebaseAnalytics.logEvent("Toast_launched",bundle);
mFirebaseAnalytics.setCurrentScreen(MainActivity.this,"Dummy Screen",null);
Toast.makeText(getApplicationContext(),"Toast",Toast.LENGTH_LONG).show();
mFirebaseAnalytics.setUserProperty("age","21");
throw new RuntimeException("This is a crash");
}
});
答案 0 :(得分:0)
您应该实现结构https://fabric.io/kits/android/crashlytics/install并将其与firebase连接,以便记录崩溃等事件。