firebase-invites

Firebase invites says invitation sent but has not been received

早过忘川 提交于 2019-12-03 22:11:05
I've trying to send invitations with Firebase Invites. When select an email from a contact, Firebase says that has sent the invitation, but the email is never received. On the console the SHA1 certicates are configurated. The errorcode returned is always RESULT_OK and the number of invitations returned from AppInviteInvitation.getInvitationIds is correct. The SDK is updated on gradle with the latest version, 10.0.1, like explained on the documentation. The code that creates the invitation is: Intent intent = new AppInviteInvitation.IntentBuilder(title) .setMessage(msg) .setCallToActionText

Firebase App Invite not working in release build APK

牧云@^-^@ 提交于 2019-12-03 20:50:58
I am working with Firebase app invite for the first time, its working fine with debug build APK, but its not working in release build APK. Do I need to add something in pro-guard? compile 'com.google.firebase:firebase-invites:10.0.1' You have to update SHA1 fingerprint from firebase console. Instead of using SHA1 of debug.keystore you should use SHA1 fingerprint of your release keystore. Command line: keytool -exportcert -alias YOUR-KEY-ALIAS -keystore PATH-TO-YOUR-RELEASE-KEYSTORE /keystore.jks -list -v Copy and paste new SHA1 fingerprint to firebase console. Download a new google-services

App invites using Firebase not working

二次信任 提交于 2019-12-03 15:07:33
Developing an App which has Firebase as backend. Currently, was stuck while implementing Firebase App Invite . Just looking to send invites ( not currently trying to implement the clicking of the dynamic link by the installed new user) but the onActivityResult returns wrong result_code Steps followed Integrated FireBase SDK and authenticating successfully. Enabled Firebase Dynamic link and referred in the app Clicking on the invite button shows the inbuilt Firebase Activity with option to select users to invite and sent ( SMS or Email Invites ) the app returns back to the invite screen as

App Invite configuration failed Firebase iOS cocoapods

青春壹個敷衍的年華 提交于 2019-12-03 07:26:52
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.' Click on your project Navigate to Info tab Scroll down you will see the URL Types Click the + button and add your bundleID to URL Schemes Click the + button again and add your REVERSED_CLIENT_ID to URL Schemes . This can be found in your GoogleService-Info.plist Finally your URL types should look something like this The Invites pod does require setting up a couple of custom URL schemes, which is easy