I am using xcode11 with mac os 10.14.1. I implemented fabric to firebase migration using the following docs.
And I generated code for testing crash , but this crash report cannot appear in firebase crashlytics console.I used the following doc for this implementation
https://firebase.google.com/docs/crashlytics/force-a-crash?platform=ios
I also added the following run script in Xcode build phases
"${PODS_ROOT}/Fabric/upload-symbols" -gsp "${PROJECT_DIR}/GoogleService-Info.plist" -p ios "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}"
But this will return the following error when I run the application.
31merror: Could not complete submission of dSYM at /Users/macmini1/Library/Developer/Xcode/DerivedData/app_name-dnzsvdsxebmfqjbjecjlyhdzwags/Build/Products/Debug-iphonesimulator/app_name.app.dSYM: Error Domain=com.crashlytics.mac.error-domain.process-dsym Code=3 "File no longer exists at (null)" UserInfo={NSLocalizedFailureReason=File no longer exists at (null)}[0m Command PhaseScriptExecution failed with a nonzero exit code
Could you please help me how to solve this issue