Installationnpmyarn$ npm install react-native-receive-sharing-intent --saveCopy$ yarn add react-native-receive-sharing-intentCopyReact Native version < 0.60.0#$ npx react-native link react-native-receive-sharing-intentCopyNote: Ios and Android on Debbuging time not working at sometimes while App is ClosedUsage#import ReceiveSharingIntent from 'react-native-receive-sharing-intent'; // To get All Recived Urls ReceiveSharingIntent.getReceivedFiles(files => { // files returns as JSON Array example //[{ filePath: null, text: null, weblink: null, mimeType: null, contentUri: null, fileName: null, extension: null }] }, (error) =>{ console.log(error); }, 'ShareMedia' // share url protocol (must be unique to your app, suggest using your apple bundle id) ); // To clear Intents ReceiveSharingIntent.clearReceivedFiles(); Copy