React Native linking through install
Working on a React Native app I'm trying to make a simple referral system if the user shares their link to their friend then when their friend uses the link and registers successfully it will send a request.
for now I am using the react-native Share: https://facebook.github.io/react-native/docs/share.html
and the react-native Linking: https://facebook.github.io/react-native/docs/linking.html
This is working ok for now but the problems comes when a user doesn's have the app yet. How to redirect to installation and keep the data from the link through the install process.
Using firebase for the login I thought of using the firebase invites however it is not compatible to use with react-native.
would their be any other alternate solution?
Comments
Post a Comment