iOS版Crashlytics キットでは、選択した最も重要なクラッシュをキャプチャするための優れたサービスを提供しますwhile adding the most important and relevant crash details of your choosing. Fabric プラグインを使ってあなたのアプリにCrashlytics キットをインクルードしてみましょう。;Crashlyticsをインクルードするだけで、すぐにクラッシュリポートが使えるようになります。 - コードを追加する必要はありません
Crashlytics Kit for iOSCrashlytics Kit for iOS provides an elegant service to capture crashes while adding the most important and relevant crash details of your choosing. Get started with the Fabric plugin to include the Crashlytics Kit in your app; simply including Crashlytics will enable crash reporting right away - there’s no extra code to write. |
Crashlytics キットを追加したら、テストしてみたくないですか?以下のコードを使ってテストのクラッシュを発生させます:
[[Crashlytics sharedInstance] crash];
XCodeデバッガを切断したままにして、クラッシュ発生後にアプリを再起動してください。
クラッシュ後に再起動するとクラッシュが送信されます。そのため、上記コードはあなたのアプリデリゲートの didFinishLaunching
メソッド外に記載するようにしてください。
Pro-ヒント:ボタンを押して上記コードを呼び出してください。
クラッシュはリアルタイムに処理されますが、我々はクラッシュを重要な問題に目を向ける助けになるものと考えています。 内在する問題によってクラッシュが発生しているのであれば、クラッシュのおかけでそれを問題だと認識でき、詳細を調べられるのです。 またクラッシュが発生した?新たな問題がまた発生したということでしょう。
Cause a Test CrashAdded the Crashlytics Kit and want to test it out? Cause a test crash using this line of code: [[Crashlytics sharedInstance] crash]; Keep XCode’s debugger disconnected and after causing the crash, relaunch your app. Crashes are sent after it’s been launched following a crash, so be sure to place this line outside your App Delegate’s Pro-tip: Call that code on a button push. Crashes are processed in real-time, but we group crashes to help you focus on the most important issues. If the crash is for an existing issue, we will add it to that issue so that you can dive into the details. New crash? A new issue will be created. |
クラッシュ情報が見つからない場合、確認すべきいくつかの一般的問題があります
appDidFinishLaunchingWithOptions
メソッド内で最後に呼び出される必要があります。)
TroubleshootingIf you aren’t seeing crashes, there are a few common issues you can check for:
|