Crashlytics in iOS won't proceed past “Build Your Project” in Fabric app

前端 未结 26 884
隐瞒了意图╮
隐瞒了意图╮ 2020-11-30 01:02

I\'m installing Crashlytics for my iOS app. I downloaded it via their site link, and went through all the steps for integrating the frameworks, adding the run script, etc. <

相关标签:
26条回答
  • 2020-11-30 01:42

    Open Project in higher version of Xcode. This resolved my issue after waste many hours.

    My Project build on Xcode 10.2 and I was running on Xcode 10.1 but when I run the same project on Xocode 11. The build was succeeded.

    0 讨论(0)
  • 2020-11-30 01:44

    I was only able to get the Fabric app to continue the installation process after setting my build target to 'Generic iOS Device' and creating an archive from the Product > Archive menu.

    Simply building the app or running it on an emulator doesn't seem to trigger the Fabric App to proceed.

    0 讨论(0)
  • 2020-11-30 01:45

    If you check the resource navigator you may see the following message:

    "DEBUG_INFORMATION_FORMAT should be set to dwarf-with-dsym for all configurations. This could also be a timing issue, make sure the Fabric run script build phase is the last build phase and no other scripts have moved the dSYM from the location Xcode generated it. Unable to process eCreditWebWrapper.app.dSYM at path"

    Go to Build Settings and search for "Debug Information Format". Ensure "Debug" is set to "DWARF with dSYM File".

    Without the dSYM file Fabric won't work.

    0 讨论(0)
  • 2020-11-30 01:45

    you must check that your deployment target version because of "Fabric's minimum iOS version is 6.0"

    0 讨论(0)
  • 2020-11-30 01:45

    In my situation I was following all the steps correctly but got stuck on 'add build phase' step. Then I just restarted fabric and all works just fine

    Also there are some other possible actions:

    1) Just restart Fabric, Xcode and your Mac. 2) Also if you use Cocoapods change build phase line from

    ./Crashlytics.framework/run [yourAPIKey] 
    

    to

    "${PODS_ROOT}/Fabric/run" [yourAPIKey]
    

    3) After building project if Fabric will stop responding just wait a while. It took about minute on my Mac.

    0 讨论(0)
  • 2020-11-30 01:45

    If you have multiple TARGETS,

    check your Schema selection is correct before you build project.

    0 讨论(0)
提交回复
热议问题