Firebase崩溃报告多个问题

Phi*_*yer 7 ios firebase firebase-crash-reporting

我正在iOS应用上设置Firebase崩溃报告.我导入了必要的json文件并设置了shell脚本.但是,当我在模拟器上单击运行时,我得到11个错误,所有人都说同样的事情.以下是其中两个:

warning: dump_syms: /var/folders/5l/20by_c_57fb7jhv3jh72jw9m0000gn/T/com.google.FirebaseCrashReporter.TAlixfZc/**App Name**.dSYM/Contents/Resources/DWARF/**App Name**: in compilation unit '/Users/mikelehen/firebase/firebase-client-objc/Firebase/Firebase/Utilities/FUtilities.m' (offset 0x28a2e): `

warning: dump_syms: /var/folders/5l/20by_c_57fb7jhv3jh72jw9m0000gn/T/com.google.FirebaseCrashReporter.TAlixfZc/**App name**.dSYM/Contents/Resources/DWARF/**App Name**: the DIE at offset 0x28fc1 has a DW_AT_abstract_origin attribute referring to the die at offset 0x2940f, which either was not marked as an inline, or comes later in the file `
Run Code Online (Sandbox Code Playgroud)

当我尝试在iPhone上运行它时,我只得到四个问题.

另外,我的名字不是mikelehen,这是由于某种原因导致的一个问题.

按照Firebase网站上有关模拟崩溃的说明操作后,我从未获得有关正在上传的崩溃的日志输出.

知道我在这里做错了什么吗?

编辑:这是我的构建阶段中的脚本:

JSON_FILE="../**App Name**/ServiceAccount.json"

GOOGLE_APP_ID=1:**App ID**

defaults write com.google.SymbolUpload version -integer 1
JSON=$(cat "${JSON_FILE}")
/usr/bin/plutil -replace "app_${GOOGLE_APP_ID//:/_}" -json "${JSON}" "$HOME/Library/Preferences/com.google.SymbolUpload.plist"
"${PODS_ROOT}"/FirebaseCrash/upload-sym
Run Code Online (Sandbox Code Playgroud)

小智 8

尝试:

  1. 构建阶段 - >运行脚本
  2. 点击 Run script only when installing

  • 设置该标志意味着在存档应用程序以进行发布时不会上载符号文件(使它们几乎无用). (6认同)