Reputation: 23407
Friends I am integrate Crashlytics using Fabric SDK. According to steps follow and Adding Fabric
and Crashlytics
framework in project. also adding code in AppDelegate as below.
Fabric.with([Crashlytics()])
after make a IPA
file of APP and Distribute on Fabric and invite to Client. Client Download the IPA. He say App is Crash on device. But In Crashlytics doesn't get any crash report.
please help me what is missing, I doesn't get any Crash report.
Upvotes: 1
Views: 2519
Reputation: 1777
From Xcode 7. By default in build setting -> enable bitcode is set to YES. You need to make it NO. And then check.
This works for me. As per my Reading app need to send the crash reports to fabric. But if the Enable bitcode is YES then you need to download the DYSM file from Xcode and upload it manually to fabric.
check Advanced Fabric setting
Upvotes: 0
Reputation: 979
Make sure you have added the API Key and the Build Secret CORRECTLY in your Run Scripts.
You can find the API Key and Build phases in your Crashlytics account here
Go to Xcode Project > YOUR TARGET > Build Phases > Run Script.
ADD the Command as shown below replacing your API Key and Build Secret.
Upvotes: 1
Reputation: 6394
If the application is crashing at the launch of the application then it will not be reported else it will be reported.
To cross check you can do force crash in Crashlytics.
Refer this link
Upvotes: 1