App Invite configuration failed Firebase iOS cocoapods

后端 未结 4 1886
清歌不尽
清歌不尽 2021-02-08 10:22

I got a build error with this in it while trying out the new version of firebase

*** Terminating app due to uncaught exception \'com.firebase.appinvite\', reason         


        
4条回答
  •  滥情空心
    2021-02-08 10:45

    My podfile had the following. I just had to uncomment the Firebase/Invites pod. There seems to be a problem with it for now.

    pod 'Firebase'
    pod 'Firebase/AdMob'
    pod 'Firebase/Analytics'
    pod 'Firebase/AppIndexing'
    pod 'Firebase/Auth'
    pod 'Firebase/Crash'
    pod 'Firebase/Database'
    pod 'Firebase/DynamicLinks'
    #pod 'Firebase/Invites' this caused an exception!!
    pod 'Firebase/Messaging'
    pod 'Firebase/RemoteConfig'
    pod 'Firebase/Storage'
    

提交回复
热议问题