0

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 copy the referral link to the clipboard without ever showing the Invite UI?

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
keyboard
  • 2,137
  • 1
  • 20
  • 32

1 Answers1

5

Firebase Invites is a UI to create dynamic links.

For creating such links in your own code, use Firebase Dynamic Links - which Invites uses under the hood.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
  • Thank you! I was just wondering if Invites would easify that creation of Dynamic Links with some helper functions or similar. – keyboard Sep 07 '17 at 00:20