Firebase Crashlytics: Upload missing dSYMs to see crashes from 1 versions.(iOS)

前端 未结 18 2294
名媛妹妹
名媛妹妹 2020-12-12 17:53

Error Message: Upload missing dSYMs to see crashes from 1 versions. Versions affected: 1.0 (1)

I am trying to implement Firebase Crashlytic

18条回答
  •  星月不相逢
    2020-12-12 18:37

    After updating Fabric Crashlytics to Firebase Crashlytics SDK. I was also getting same issue(Upload 1 missing dSYM required to process 5 crashes). I solved with the help of following steps-:

    Step 1-: Open Target-> Build Settings -> Search for "debug information format". Set Debug Information Format to DWARF with dSYM File for all your build types.

    Step 2-: Open Run Script section and input the script

    "${PODS_ROOT}/FirebaseCrashlytics/run"

    and then add input files-

    ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME}
    $(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)
    

    Step 3-: Add one more script to upload dSYM file

    ${PODS_ROOT}/FirebaseCrashlytics/upload-symbols -gsp ${PROJECT_DIR}/Your_path/GoogleService-Info.plist -p ios ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}
    

提交回复
热议问题