我使用firebase崩溃报告来破解我的iphone项目。
但我收到的日志不可读:
Exception name: EXC_BREAKPOINT / EXC_ARM_BREAKPOINT
TPC_swift
4295841940 + 284820
TPC_swift
4295841344 + 284224
TPC_swift
4296852240 + 1295120
libdispatch.dylib
_dispatch_call_block_and_release + 5304
libdispatch.dylib
_dispatch_client_callout + 5240
libdispatch.dylib
_dispatch_main_queue_callback_4CF + 27520
CoreFoundation
__CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 920908
CoreFoundation
__CFRunLoopRun + 912308
9
CoreFoundation
CFRunLoopRunSpecific + 35916
GraphicsServices
GSEventRunModal + 49284
UIKit
UIApplicationMain + 516228
TPC_swift
4295904544 + 347424
libdyld.dylib
start + 10420
这是firebase或apple错误的问题?
在我的项目的构建阶段,我有这个脚本:
# Replace this path with the path to the key you just downloaded
JSON_FILE = / ***** / TPC_Swift / TPC_swift / TPC_swift /项目 - ***** JSON
# Replace this with the GOOGLE_APP_ID from your GoogleService-Info.plist file
GOOGLE_APP_ID=1:*********:ios:***************
defaults write com.google.SymbolUpload version -integer 1 # creates file if it does not exist
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
谢谢
编辑:
在firebase上,我有:
上传符号文件以表示UUID的未来堆栈跟踪 68FD2AAC-F8A7 - ***********
我认为问题与符号文件有关 怎么解决这个问题?
编辑2:
我试过" dwarfdump --uuid /path/to/your/build/area/MyApp.app/MyApp" 但我无法检索到这个UUID ...
答案 0 :(得分:3)
面对同样的问题,这是我从 firebase-support@google.com 获得的:
感谢您的等待。你能否仔细检查以下项目,看看它是否可行:
重置您的OAuth凭据,在命令下运行:
rm $HOME/Library/Preferences/com.google.SymbolUpload*
创建新的服务帐户并确保其具有编辑权限 将脚本修改为以下格式:
# Replace this with the GOOGLE_APP_ID from your GoogleService-Info.plist file
GOOGLE_APP_ID=1:my:app:id
# Replace the /Path/To/ServiceAccount.json with the path to the key you just downloaded
"${PODS_ROOT}"/FirebaseCrash/upload-sym "/Path/To/ServiceAccount.json"
请确保您的应用ID和json文件路径正确无误。 我希望这有帮助。如果您有其他问题,请告诉我。
答案 1 :(得分:2)
您是否找到了问题的答案?
您的脚本似乎与今天(2016年9月18日)Firebase doc推荐的脚本略有不同。
你试过这个吗?
# Replace this with the GOOGLE_APP_ID from your GoogleService-Info.plist file
GOOGLE_APP_ID=1:my:app:id
# Replace the /Path/To/ServiceAccount.json with the path to the key you just downloaded
"${PODS_ROOT}"/FirebaseCrash/upload-sym "/Path/To/ServiceAccount.json"