Skip to main content
Allow users to share call invite links with others. When the share invite button is clicked, you can generate and share a link that others can use to join the call.

Listen for Share Invite Button Click

Handle when the user clicks the share invite button:
Create an invite link that others can use to join the call:

Share Using React Native Share

Use the built-in Share API to share the invite:
Configure your app to handle incoming deep links:

iOS Configuration

Add URL scheme to ios/YourApp/Info.plist:

Android Configuration

Add intent filter to android/app/src/main/AndroidManifest.xml:

Complete Example

For a better user experience, configure Universal Links:
  1. Create an apple-app-site-association file on your server:
  1. Host it at https://yourapp.com/.well-known/apple-app-site-association
  2. Add Associated Domains capability in Xcode:
    • applinks:yourapp.com
Configure App Links for Android:
  1. Create a assetlinks.json file:
  1. Host it at https://yourapp.com/.well-known/assetlinks.json
  2. Update your intent filter with autoVerify: