firebase-invites

google app invite - sms are not sent

不羁岁月 提交于 2019-12-19 04:06:35
问题 I've tried searching for a solution with no luck yet. I am trying to use the google app invite to invite friends to use my app (android). Emails are sent but sms are not. I do not get any error message, in fact I actually get a message that the invitation has been sent. I also tried adding sms permission to my app.. Any thoughts? 回答1: Same problem here. To solve it reduce the length of your message . As we know, the message must be not longer than 100 symbols. But this is true only for latin

Android | Firebase invite result code is OK but invite NOT sent

◇◆丶佛笑我妖孽 提交于 2019-12-13 07:24:19
问题 I am implementing firebase dynamic links in an Android application (an index of recipes app), at first it was basic and worked without any issue: viewHolder.mShareBtn.setOnClickListener(view -> { Intent intent = new AppInviteInvitation.IntentBuilder(mContext.getResources().getString(R.string.invitation_title)) .setMessage(mContext.getResources().getString(R.string.invitation_message)) .build(); ((AppCompatActivity) mContext).startActivityForResult(intent, 4); }); However I tried to make them

Firebase Invites: Message failed to send

跟風遠走 提交于 2019-12-11 15:16:42
问题 I am trying to use Firebase Invite with React Native. I have followed instructions from rnfirebase.io and Google documentations. I can get to the part of showing the contact list from where I can choose who to invite. But when I press the arrow to send the invite, it shows me an error message saying "Message failed to send". I read the related posts and most seem to suggest to check that the SHA1 matches. I have checked this many times. I have added SHA1 and SHA256 from my debug keystore and

Can not add Apple client ID to Firebase invites intent on Android

Deadly 提交于 2019-12-11 08:15:28
问题 When creating Firebase invite intent I try to add link to iOS app as described in documentation: intent = new AppInviteInvitation.IntentBuilder(context.getString(R.string.invitation_title)) .setMessage(context.getString(R.string.invitation_message)) .setOtherPlatformsTargetApplication( AppInviteInvitation.IntentBuilder.PlatformMode.PROJECT_PLATFORM_IOS, "1059710961") .build(); "1059710961" and "mobi.appintheair.wifi" both cause the same error: AppInviteAgent: Create invitations failed due to

Firebase invites says invitation sent but not receiving any invites?

丶灬走出姿态 提交于 2019-12-10 11:25:17
问题 I added SHA1 debug and release keys in firebase console still no luck on why the invites are not being sent ? Im new to firebase invites and implemented as per documentation : invitesButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Amplitude.getInstance().logEvent("INVITE EVENT"); Intent intent = new AppInviteInvitation.IntentBuilder("Invitation") .setMessage("Help your friend unlock his favourite celebrity at FanStation : app link here")

Not getting Firebase Dynamic Link of users that download app from Playstore

我是研究僧i 提交于 2019-12-08 15:04:22
问题 There are 2 cases in Playstore App Normal Installation (Playstore shows OPEN Button) Installation from Dynamic Link (Playstore shows CONTINUE Button) Test Case: Download app from Firebase dynamic link, After installation Playstore will show CONTINUE button: There are 2 options from where user can open app after successful installation . Open app by clicking on CONTINUE Button -> App will get the link, everything works as expected Open app from LAUNCHER ICON , and not from playstore -> App

Pass multiple params via Firebase Dynamic links Android

和自甴很熟 提交于 2019-12-07 05:54:13
问题 I've used Firebase Dynamics link and it can open my app, go to play store or go to an URL. But when I pass some parameters through link, I can only get first parameter. Here's my dynamic links: https://xx.app.goo.gl/?link=http://xx.com/?usn=abc&pass=def&apn=com.xx&afl=http://google.com And I used this code to get the link: // Build GoogleApiClient with AppInvite API for receiving deep links mGoogleApiClient = new GoogleApiClient.Builder(this) .enableAutoManage(this, this) .addApi(AppInvite

Firebase Invites sends Emails but not SMS. Returns resultCode 0

為{幸葍}努か 提交于 2019-12-07 03:23:55
问题 I am trying to implement an App Invite system in my Android app with Firebase. The code is exactly as that given in their guide. private void onInviteClicked() { Intent intent = new AppInviteInvitation.IntentBuilder("Title here") .setMessage("message here") .setDeepLink(Uri.parse("deep_link_here") .setCallToActionText("Install!")) .build(); startActivityForResult(intent, REQUEST_INVITE); } @Override public void onActivityResult(int requestCode, int resultCode, Intent data) { super

Firebase invites says invitation sent but not receiving any invites?

岁酱吖の 提交于 2019-12-06 13:27:04
I added SHA1 debug and release keys in firebase console still no luck on why the invites are not being sent ? Im new to firebase invites and implemented as per documentation : invitesButton.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { Amplitude.getInstance().logEvent("INVITE EVENT"); Intent intent = new AppInviteInvitation.IntentBuilder("Invitation") .setMessage("Help your friend unlock his favourite celebrity at FanStation : app link here") .setCustomImage(Uri.parse("https://postimg.org/image/5sbdexljh/")) .setCallToActionText("Unlock Celebrity Now")

Check if Firebase invite led to the Play Store

你离开我真会死。 提交于 2019-12-05 22:54:30
When using Firebase invites and accessing the dynamic links at the startup of the app on Android, is there a way to know whether the user just installed the app thanks to the invite or whether it was already installed? Many thanks, Borja EDIT: Thanks to Catalin Morosan for the answer It turns out that you can find this out using method AppInviteReferral.isOpenedFromPlayStore(result.getInvitationIntent()) . In the activity that runs when you click on the invitation: // Create an auto-managed GoogleApiClient with access to App Invites. mGoogleApiClientInvite = new GoogleApiClient.Builder(this)