Posts

Post not yet marked as solved
0 Replies
325 Views
Hi, For my app, I tried to configure the Firebase Crashlytics. For configuring I’m not using the pod file. Installed Firebase Without Using CocoaPods. For that I followed the following link: https://mokacoding.com/blog/setting-up-firebase-without-cocoapods/ Then I added GoogleService-Info.plist to the project from the Firebase account. After that, I changed the DEBUG_INFORMATION_FORMAT from DWARF to dwarf-with-dsym in Build options. Then I added the Run script in the Build phase. Added the following script: "${PROJECT_DIR}/ProjectName/GoogleService-Info.plist" -p ios "${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}" For install build only selected Based on the dependency analysis is selected Then in input files, I added the following: ${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}/Contents/Resources/DWARF/${TARGET_NAME} $(SRCROOT)/$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH) Changed the Scheme from debug to release. I could not able to get the crash from crashlytics console. Is any issue is with the run scrips? I appreciate your help in advance.
Posted Last updated
.