Firebase崩溃报告无法在iOS实际设备上运行

时间:2016-06-30 00:09:51

标签: ios swift firebase firebase-crash-reporting

我在iOS上遇到了Firebase崩溃报告的一些问题。当我在模拟器上运行我的测试应用程序时,它工作得很好。但是当我在真实设备上运行它时,没有任何事情发生。这是我的示例代码:

import UIKit
import FirebaseCrash

class ViewController: UIViewController {

@IBOutlet weak var btn: UIButton!
override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    btn.addTarget(self, action: #selector(ViewController.btnClicked), forControlEvents: UIControlEvents.TouchUpInside)
}

override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}

func btnClicked() {
    FIRCrashMessage("Cause Crash button clicked")
    fatalError()
}

}

有什么建议可以解决我的问题吗?谢谢。

步骤

  1. 我将应用程序从Xcode安装到真实设备。

  2. 我按"命令+停止应用。"

  3. 我从真实设备启动应用程序并使其崩溃。
  4. 我重新推出该应用。

1 个答案:

答案 0 :(得分:0)

  • 您是否在FIRApp.configure()上添加了didFinishLaunchingWithOptions appDelegate文件的方法?
  • 当你重新启动应用程序时(注释错误),你会看到 控制Crash message uploaded
  • 之类的消息

也:

重置您的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文件路径正确无误。