crashlytics

How to programmatically get Crashlytics version with Firebase on iOS

我与影子孤独终老i 提交于 2020-12-15 05:44:06
问题 With Fabric , it was the following (answered here): Crashlytics.sharedInstance().version With Firebase : the instance is Crashlytics.crashlytics() , but there is no version on it nothing of interest in FIRCrashlytics.h Since Crashlytics is an NSObject , Crashlytics.version exists, but it's equal to 0. I also looked on the FirebaseCrashlytics module to no avail. The Crashlytics version is actually printed in the console when running FabricApp.configure in the AppDelegate , so it's clearly

How to migrate from Fabric Crashlytics to Firebase Crashlytics?

余生颓废 提交于 2020-12-08 05:49:47
问题 I have an app that logs crashes and non-fatals to Fabric Crashlytics and uses Firebase Analytics to log analytics events. I want to migrate from Fabric Crashlytics to Firebase Crashlytics. In addition I want to save historical data from Fabric during the migration. When I try to do it with provided mechanism of Firebase Migration (https://fabric.io/firebase_migration/apps) I cannot do it in a way I want to. In particular, I cannot provide existent Firebase project ID for migration. I see

How to migrate from Fabric Crashlytics to Firebase Crashlytics?

末鹿安然 提交于 2020-12-08 05:48:03
问题 I have an app that logs crashes and non-fatals to Fabric Crashlytics and uses Firebase Analytics to log analytics events. I want to migrate from Fabric Crashlytics to Firebase Crashlytics. In addition I want to save historical data from Fabric during the migration. When I try to do it with provided mechanism of Firebase Migration (https://fabric.io/firebase_migration/apps) I cannot do it in a way I want to. In particular, I cannot provide existent Firebase project ID for migration. I see

Add the Firebase iOS SDK (4.3.0 or higher) or Unity Plugin (6.15.0 or higher), then build, run, and crash your app

杀马特。学长 韩版系。学妹 提交于 2020-12-05 12:28:26
问题 I am trying to integrate with Firebase Crashlytics. I added the run scripts as described here. then installed the pods: pod 'Firebase/Crashlytics' pod 'Firebase/Analytics' I configured the Firebase APIs: FirebaseApp.configure() I ran the app. the messages on the console seems to be ok. But when I open the Crashlytics tab in the firebase console. I only get the message in the question title. This is what I have in my Podfile.lock : - Firebase (6.33.0): 回答1: Add the dSYM to the debug file the

How to log non-fatal (caught) exceptions with Firebase (Crashlytics)

限于喜欢 提交于 2020-12-04 14:39:26
问题 I started using Firebase (Crashlytics) in my project to track app crashes. It works perfectly with crashes but how can I log non-fatal crashes, i.e. caught exceptions. I tried Crashlytics.logException(e) but it doesn't work. I see no reports in the dashboard. I saw answers suggesting to use FirebaseCrash.report(t) but this class doesn't exist in the latest version of Firebase. So does anyone know how it's done? Dependecies implementation 'com.google.firebase:firebase-core:16.0.0'

How to log non-fatal (caught) exceptions with Firebase (Crashlytics)

你离开我真会死。 提交于 2020-12-04 14:38:20
问题 I started using Firebase (Crashlytics) in my project to track app crashes. It works perfectly with crashes but how can I log non-fatal crashes, i.e. caught exceptions. I tried Crashlytics.logException(e) but it doesn't work. I see no reports in the dashboard. I saw answers suggesting to use FirebaseCrash.report(t) but this class doesn't exist in the latest version of Firebase. So does anyone know how it's done? Dependecies implementation 'com.google.firebase:firebase-core:16.0.0'

Firebase Crashlytics setup on iOS?

六眼飞鱼酱① 提交于 2020-11-30 06:24:52
问题 I'm trying to integrate Firebase Crashlytics into iOS my app, which has Firebase Crash Reporting enabled. I've followed the documentation here, but my build always fails when running the custom build phase: "${PODS_ROOT}/Fabric/run" The error in Xcode is the following: error: Fabric: Configuration Issue Fabric API key not valid. Your Fabric run script build phase should contain your API key: ./Fabric.framework/run INSERT_YOUR_API_KEY INSERT_YOUR_BUILD_SECRET I do not have a Fabric API key and

Firebase Crashlytics setup on iOS?

ε祈祈猫儿з 提交于 2020-11-30 06:18:09
问题 I'm trying to integrate Firebase Crashlytics into iOS my app, which has Firebase Crash Reporting enabled. I've followed the documentation here, but my build always fails when running the custom build phase: "${PODS_ROOT}/Fabric/run" The error in Xcode is the following: error: Fabric: Configuration Issue Fabric API key not valid. Your Fabric run script build phase should contain your API key: ./Fabric.framework/run INSERT_YOUR_API_KEY INSERT_YOUR_BUILD_SECRET I do not have a Fabric API key and

Firebase Crashlytics setup on iOS?

坚强是说给别人听的谎言 提交于 2020-11-30 06:18:02
问题 I'm trying to integrate Firebase Crashlytics into iOS my app, which has Firebase Crash Reporting enabled. I've followed the documentation here, but my build always fails when running the custom build phase: "${PODS_ROOT}/Fabric/run" The error in Xcode is the following: error: Fabric: Configuration Issue Fabric API key not valid. Your Fabric run script build phase should contain your API key: ./Fabric.framework/run INSERT_YOUR_API_KEY INSERT_YOUR_BUILD_SECRET I do not have a Fabric API key and

iOS Firebase Crashlytics not showing up crashes in Dashboard

前提是你 提交于 2020-11-28 08:57:26
问题 I implemented Firebase Crashlytics in my iOS app. I followed all the steps in firebase documentation. I already ran crashlytics without the debugger by closing the app first and then re run the app so that crash reports can be sent. I even get this message Crash upload submission succesful I even added the Run script and set variable to "DWARF with DSYM" "${PODS_ROOT}/Fabric/run" I ready somewhere that if DSYM aren't uploaded you won't see your crashes even if they are uploaded successfully.