web-dev-qa-db-ja.com

プロジェクトのビルド設定がdSYMファイルを生成していることを確認してください。 DEBUG_INFORMATION_FORMATは、すべての構成でdwarf-with-dsymに設定する必要があります

私は最近このエラーを取得し始めました:

2015-03-23 11:35:48.902 run[60036:1047011] Crashlytics.framework/run 1.3.14
2015-03-23 11:35:48.911 run[60036:1047011] 

Crashlytics: dSYM Error

Unable to process <your app>.app.dSYM at path /path/to/<your app>.app.dSYM
Make sure your project build settings are generating a dSYM file. DEBUG_INFORMATION_FORMAT should be set to dwarf-with-dsym for all configurations. This could also be a timing issue, make sure the Crashlytics run script build phase is the last build phase and no other scripts have moved the dSYM from the location Xcode generated it.

Command /bin/sh failed with exit code 1

私はこの答えを試しました dSYMファイルをアーカイブにコピーできません しかし、すべてのGenerate Debug SymbolsYESに設定されています

さらに提案はありますか?

190
Snowcrash

以下の解決策が私のために働いた、私はそれがあなたを助けることを願っています。

プロジェクトのビルド設定に移動してから、ビルド設定でデバッグ情報形式を検索し、「デバッグ情報形式」を検索してから「デバッグ情報形式」を「dSYMファイルを使用したDWARF」に設定します

enter image description here

ビルド設定でデバッグシンボルの生成がYesに設定されていることを確認します。

553
ABS

スクリプトの実行で「インストール時にのみスクリプトを実行する」ことを確認してください

82
Bruno

常に実行する必要があるスクリプトフェーズが既にある場合は、競合を回避するために、ブルーノの応答を詳しく説明します。 enter image description here

6
chuckSaldana