crashlytics

How to run upload symbols to upload dSYMs as a part of Xcode build process?

余生长醉 提交于 2020-06-25 07:54:28
问题 Ok, so I'm trying to automatically upload dSYMs. I'm following instructions from this official documentation: https://firebase.google.com/docs/crashlytics/get-deobfuscated-reports I'm stuck at "Run the upload symbols script manually" section. There are 3 ways to upload dSYMs. I'm trying to follow the first one - including the following line in your build process: find ${DWARF_DSYM_FOLDER_PATH} -name "*.dSYM" | xargs -I \{\} ${PODS_ROOT}/Fabric/upload-symbols -gsp MyProjectFolder/GoogleService

Crashlytics Generate Symbols gradle step fails: GC Overhead Limit Exceeded

我们两清 提交于 2020-06-25 01:26:32
问题 I'm converting a project from gradle version 3.3 to 4.10.1. This project is mostly C++ code built using a custom build step - not CMake (externalNativeBuild) or Android.mk(ndkBuild). It produces the following libraries: armeabi-v7a unstripped: 883.2MB arm64-v8a unstripped: 864.6MB armeabi-v7a stripped: 15.6MB arm64-v8a stripped: 23.9MB The build process fails at the crashlyticsGenerateSymbolsGoogleDistribution step, with the error OutOfMemoryError: GC Overhead Limit Exceeded. Is there a

Does Crashlytics call CrashlyticsDelegate when a previous crash occurred on an app extension?

时间秒杀一切 提交于 2020-06-22 04:30:22
问题 I've integrated Firebase Crashlytics with my iOS Today Widget Extension and iOS iMessage Extension. (Unfortunately, there's no official documentation for this.) If one of my app extensions crashes, will Crashlytics call the CrashlyticsDelegate -crashlytics:didDetectCrashDuringPreviousExecution: callback within the app extension itself the next time app extension is run? Or will Crashlytics call the CrashlyticsDelegate on the main app itself? Or does Crashlytics not support CrashlyticsDelegate

Does Crashlytics call CrashlyticsDelegate when a previous crash occurred on an app extension?

南笙酒味 提交于 2020-06-22 04:30:13
问题 I've integrated Firebase Crashlytics with my iOS Today Widget Extension and iOS iMessage Extension. (Unfortunately, there's no official documentation for this.) If one of my app extensions crashes, will Crashlytics call the CrashlyticsDelegate -crashlytics:didDetectCrashDuringPreviousExecution: callback within the app extension itself the next time app extension is run? Or will Crashlytics call the CrashlyticsDelegate on the main app itself? Or does Crashlytics not support CrashlyticsDelegate

Firebase Crashlytics DSYM file

一曲冷凌霜 提交于 2020-06-16 20:47:51
问题 I'm trying to integrate Crashlytics in my app and in the 5. step it says: Xcode versions 10 or higher only: Add your app’s dSYM location as an input file that enables Crashlytics to automatically generate dSYMs for large apps more quickly. For example: ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME} I copy/pasted this path to my Input Files and also this one $(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH) Debug Info is set to DWARF with dSYM file.

What data is being sent to the Fabric server ? [Fabric/Crashlytics]

こ雲淡風輕ζ 提交于 2020-05-28 05:24:05
问题 We are working on a restricted Banking iOS/Android App and before integrating Fabric.io to our app we need to know what data will be sent to Fabric cloud Our two main concerns are : What is the data that will be sent to Fabric servers? Is there a possibility that it can send any sensitive data like accessKey/username/password etc. Does it have access to all the codes in our app? 回答1: Mike from Fabric here. We collect just the minimum amount of data to provide you with high quality crash

iOS and FirebaseCrashlytics

青春壹個敷衍的年華 提交于 2020-05-22 04:15:20
问题 I am trying to follow the instructions on Firebase Docs to upload missing required dSYMs. However I am stuck on running the uploader script. In my build phases I have "${PODS_ROOT}/FirebaseCrashlytics/upload-symbols -gsp${SRCROOT}/GoogleService-Info.plist -p ios ${SRCROOT}/appDsyms" When I try building the iOS app with this, I get the error: line 4: /path/to/Pods/FirebaseCrashlytics/upload-symbols -gsp/path/to/GoogleService-Info.plist -p ios /path/to/appDsyms: No such file or directory

Firebase Crashlytics - disable version

送分小仙女□ 提交于 2020-05-17 07:26:26
问题 I've migrated our apps from Fabric's Crashlytics to Firebase Crashlytics, since Fabric's dashboard will be shut down on March 31, 2020. In Fabric's dashboard, I could disable a particular version (so its crashes won't show in unfiltered crash list) as described in this answer. I couldn't find similar functionality in Firebase dashboard. Is there a way to disable a particular version there? 回答1: I've contacted Firebase's support and received response saying that there is currently no way to

How do I get the crash rate for an app out of Firebase programmatically?

南笙酒味 提交于 2020-05-17 07:25:08
问题 We have several iOS and Android apps using Crashlytics. For internal metrics and dashboards, I'd like to get the crash rate (number of crashes / number of sessions) out of Google Firebase programmatically preferably through their HTTP API. How do I do that ? 回答1: There is no programmatic API, but you can export data to BigQuery and do what you want with it from there 来源: https://stackoverflow.com/questions/55046279/how-do-i-get-the-crash-rate-for-an-app-out-of-firebase-programmatically

How do I get the crash rate for an app out of Firebase programmatically?

女生的网名这么多〃 提交于 2020-05-17 07:24:35
问题 We have several iOS and Android apps using Crashlytics. For internal metrics and dashboards, I'd like to get the crash rate (number of crashes / number of sessions) out of Google Firebase programmatically preferably through their HTTP API. How do I do that ? 回答1: There is no programmatic API, but you can export data to BigQuery and do what you want with it from there 来源: https://stackoverflow.com/questions/55046279/how-do-i-get-the-crash-rate-for-an-app-out-of-firebase-programmatically