Upgrading Firebase broke my iOS project

前端 未结 1 626
既然无缘
既然无缘 2020-12-19 07:16

I wish I had never updated my pod, the entire project was full of errors, one specific error is in the photo below, I can\'t fix it and I was ready to submit my app to the A

相关标签:
1条回答
  • 2020-12-19 07:24

    Looks like you just upgraded to Firebase version 4 ;) This new version contains many breaking changes (and some good stuff too!) for Swift based projects.

    You should follow their migration guide to fix your issues. For instance, the error you highlighted, on the StorageReference class, can easily be fixed by renaming the offending put method to putData, and so on.

    By the way, no naming changes have been made to the Objective-C SDK.

    0 讨论(0)
提交回复
热议问题