crashlytics-android

How long does Firebase store my crash data? / Export data from Crashlytics?

丶灬走出姿态 提交于 2020-08-09 10:43:28
问题 I have to leave my work with applications for for several months. Later, I would like to remove some of the errors that currently Crashlitics shows. How long does Firebase store my data, especially crashes. Is it possible to export data from Firebase Crashlytics? 回答1: Thanks. Crashlytics stores 90 days of crash data. You will soon be able to export data directly from Firebase Crashlytics. 来源: https://stackoverflow.com/questions/51572955/how-long-does-firebase-store-my-crash-data-export-data

How long does Firebase store my crash data? / Export data from Crashlytics?

白昼怎懂夜的黑 提交于 2020-08-09 10:43:23
问题 I have to leave my work with applications for for several months. Later, I would like to remove some of the errors that currently Crashlitics shows. How long does Firebase store my data, especially crashes. Is it possible to export data from Firebase Crashlytics? 回答1: Thanks. Crashlytics stores 90 days of crash data. You will soon be able to export data directly from Firebase Crashlytics. 来源: https://stackoverflow.com/questions/51572955/how-long-does-firebase-store-my-crash-data-export-data

Firebase Crashlytics not reporting crashes when manually enabled

被刻印的时光 ゝ 提交于 2020-07-20 07:33:34
问题 Crashlytics works just fine without opt-in reporting. But it stops reporting anything as soon as I set up opt-in reporting according to the tutorial. Specifically, I added the following content to AndroidManifest.xml <meta-data android:name="firebase_crashlytics_collection_enabled" android:value="false" /> And I added the following into the onCreate : Fabric.with(this, Crashlytics()) With a debugger, I am sure that the above line has been executed. However, nothing is reported to the

Firebase Crashlytics not reporting crashes when manually enabled

橙三吉。 提交于 2020-07-20 07:31:27
问题 Crashlytics works just fine without opt-in reporting. But it stops reporting anything as soon as I set up opt-in reporting according to the tutorial. Specifically, I added the following content to AndroidManifest.xml <meta-data android:name="firebase_crashlytics_collection_enabled" android:value="false" /> And I added the following into the onCreate : Fabric.with(this, Crashlytics()) With a debugger, I am sure that the above line has been executed. However, nothing is reported to the