0👍
As mentioned in the Migrating from Firebase Invites to Dynamic Links with Custom Sharing documentation, although invites will be discontinued, you can still use Firebase Dynamic Links that was in fact what really powered Invites:
Firebase Invites is deprecated. On January 24th, 2020, we will discontinue support for Firebase Invites. You will be able to use Firebase Dynamic Links with a custom sharing solution.
So the only thing left to do to rebuild Invites would be to build a custom sharing solution, there’s an example on how to perform it on the link:
Something similar to the following example should work here (recommending that you use constant string resources in your own code):
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Here's a new lesson for" +
" learning more Miwok vocabulary:\n\n" + dynamicLink);
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Let's Learn Miwok!");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent,
getResources().getText(R.string.send_to)));
And more examples here.
- [Vuejs]-Vue2 Component not rendering when data is updated
- [Vuejs]-How to get information like firstname from Azure AD and use it in .net core?
Source:stackexchange.com