Keyur Tailor
Keyur Tailor

Reputation: 424

Crashalytics not working for xcode 10, iOS12

Crashlytics does not report crash event to Fabric for Xcode 10 or higher and iOS 12 or higher.

Upvotes: 2

Views: 923

Answers (1)

Bhavik Modi
Bhavik Modi

Reputation: 1565

To report crash to Fabric from Xcode 10 and iOS 12 or higher

Step 1:

  1. Go to Build Settings
  2. Search "Debug Information Format"
  3. Change value of "Debug" from "DWARF" to "DWARF with dSYM File"
  4. Build your project again.

Debug Information Format

Step 2:

Set absolute path of Info.plist in "Input Files" - Add/Change "Input Files" value in Run Script added for Fabric under "Build Phases" - From "$(BUILT_PRODUCTS_DIR)/$(INFOPLIST_PATH)" To new path* "/Info.plist"

*new path: You can also get Info.plist path from Build Settings -> Packaging -> Info.plist File

Plist Path

Upvotes: 5

Related Questions