Questions tagged [firebase-invites]

Firebase Invites gives you the tools you need to turn your current customers into your biggest advocates. With Firebase Invites, your users can share referral codes or their favorite content over SMS or email with a touch of a button, so you can increase your app's reach and retention.

About Firebase Invites

Firebase Invites is a component of the Firebase suite of tools for cross-platform application development.

  • Invite the most relevant contacts with smart suggestions
  • Free email and SMS delivery
  • Powered by Firebase Dynamic Links

Related tags

118 questions
0
votes
1 answer

Can not resolve snackbar_layout while adding firebase invitation

I'm trying to add firebase app invitation but getting this error (in the second last line of the code mentioned below): can not resolve snackbar_layout I've already add the dependency: compile 'com.google.firebase:firebase-invites:11.6.0' .…
0
votes
1 answer

Firebase C++ SDK on Android Crashes with SIGSEGV fault addr 0x0 when creating dynamic link

We're using the Firebase C++ SDK for our iOS and Android game. On iOS creating dynamic links works just perfectly, but on Android we're getting crashes which we can't resolve even after countless hours of trying various things. Here's the code that…
0
votes
2 answers

Firebase Invite for Beta App (Google Play Store Beta and iOS Testlfight)

Does Firebase Invitie Dynamic Links / Referal Links work for Google Play Store Beta Apps and/or for iOS Testflight Apps? Our game app is currently in Beta and we're about to add a referal system.
0
votes
1 answer

Firebase Invites on iOS and Android - Is it possible to generate the Share Links without showing the UI?

Firebase Invites seems to come with a UI for creating referral links on iOS and Android. Since we're making a game we'd like to use our own UI (and at least optionally skip showing the standard system UI). Is it possible to programmatically just…
keyboard
  • 2,137
  • 1
  • 20
  • 32
0
votes
1 answer

Where is the constant for the new FirebaseAppInvite API

AppInvite.API is deprecated. I can't find the new constant in documentation. Using Firebase version 11.0.2
MiguelSlv
  • 14,067
  • 15
  • 102
  • 169
0
votes
1 answer

Firebase Dynamic Link doesn't send user to website

These days I'm launching a new Android app, but it's iOS version will be available in the App Store in few months. Within the app there is an option to invite friends to download the app via Firebase Invites. So I created a Dynamic Link using the…
0
votes
1 answer

How to validate new install using Firebase Invites

I done all the implementation of Firebase Invites in my android app through Firebase invites. If new user(device) install my app through Firebase Invite, I will give some credits to that user. Here: - How is validation done for user who has…
0
votes
1 answer

Firebase Invite does not send invites after update

I am working on the debug version of an android app. I was able to send both SMS and email invites until I recently installed a different OS on my machine (both Linux). As a result, I also updated Android Studio to the latest version, and imported…
user1592546
  • 1,480
  • 1
  • 14
  • 30
0
votes
1 answer

AppInviteReferral is deprecated. Is there an alternative?

I am following the Firebase invite tutorial from https://developers.google.com/android/reference/com/google/android/gms/appinvite/AppInviteInvitation.IntentBuilder A lot of code is relying on deprecated classes. Is there a alternative 'new' classes…
appbootup
  • 9,537
  • 3
  • 33
  • 65
0
votes
1 answer

Firebase Invites - SMS is not being send when using not-latin characters

I'm using Firebase-Invites to share an item using sms and email. Email is working as expected but Sms is being send only if all the characters are in latin. Note: I know there is a limit of 100 chars and i'm not exceeding it.
Shirane85
  • 2,255
  • 1
  • 26
  • 38
0
votes
1 answer

Firebase Invite sends message only in debug

I have implemented Firebase Invite with custom email HTML and everything worked fine on my development phone when debugging with Android Studio. I then built a release signed APK and sent it to my personal phone. Tried sending an invite (to the same…
EZDsIt
  • 921
  • 1
  • 9
  • 14
0
votes
0 answers

IOS Firebase Invitation crashing while loading contacts Objective-C

I implemented Firebase invite method and it works great for the first time. But after that, while I trying to invite it crashed. I can't trace where it from but asked in log about: malloc_error_break While I add this symbolic breakpoint in my…
0
votes
1 answer

How to connect GoogleApiClient with AppInvite.API enabled?

When I read the doc of app invite (https://firebase.google.com/docs/invites/android) they say that to Receive invitations The code above requires a connected GoogleApiClient with AppInvite.API enabled. but i have no idea how to do this ...
user7732989
0
votes
1 answer

Cannot resolve REQUEST_INVITE

I would like to add the firebase invite to my android app. I followed the steps in the tutorial ( https://firebase.google.com/docs/invites/android ), but I have this error Cannot resolve symbol REQUEST_INVITE I added firebase core and invite to my…
Korel
  • 3
  • 3
0
votes
1 answer

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

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…