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: 'App Invite configuration failed.'
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: 'App Invite configuration failed.'
My podfile had the following. I just had to uncomment the Firebase/Invites pod. There seems to be a problem with it for now.
The Invites pod does require setting up a couple of custom URL schemes, which is easy to skip over. You can do this in you Info.plist, or in the General tab of the target in Xcode. The two custom URL schemes are:
The second one is trickier! In the
GoogleService-Info.plist
you downloaded there should be a key REVERSED_CLIENT_ID you can copy the value of. For what its worth, I find that the first build after I edit the custom URL types doesn't seem to register it properly, so if it doesn't work right away, just try again.Finally your URL types should look something like this
Firebase Invites works over
Firebase Dynamic Links
so, by following the Dynamic Links guide, you need to setup 2 things in your project:At Target settings, info tab, add the new url. Set the schema your bundle ID. If you use other schema you have to set it on Dynamic Links page at Firebase console.
Firebase-generated Dynamic Link Domain
of your app. Go to target settings, capability tab, and enable Associated Domains. Add theFirebase-generated Dynamic Link Domain
you just copied.This should fix the configuration error as it did in my case. Anyway i advise to read the full guide.