我在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()
}
}
有什么建议可以解决我的问题吗?谢谢。
步骤
我将应用程序从Xcode安装到真实设备。
我按"命令+停止应用。"
答案 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文件路径正确无误。