react-native-send-intent
react-native-send-intent copied to clipboard
React Native Android module to use Android's Intent actions for send text to shareable apps or make phone calls or opening third party apps
Hi, I would like to know if it's possible to open an specific path on Storage Directory.
Hi, again! Is there a way to attach **more than 1** file and share they on SendIntentAndroid.openChooserWithOptions? Like this: ``` SendIntentAndroid.openChooserWithOptions({ subject: 'Video Title', videoUrl: { '/path_or_url/to/video1.mp4', '/path_or_url/to/video2.mp4' } },...
I have an apk that is in development, not in the store, and I am invoking from a screen in another of another as-yet not-in-store app. When I call to...
It would be nice to be able to send custom intents for example to do this: https://stackoverflow.com/questions/33114063/how-do-i-properly-fire-action-request-ignore-battery-optimizations-intent
How to disable other apps than the dialler?
I get an edge-case crash when adding a calendar event (device was reported as an un-rooted LENNY3 in Europe): ``` Fatal Exception: android.content.ActivityNotFoundException: No Activity found to handle Intent {...
I'm trying to migrate my RN project from v0.66.5 to v0.73.4, due to the ios app build failure. Among following the RN migration guide, I noticed "MainApplication.java" file should be...
``` SendIntentAndroid.isAppInstalled("com.myapp2").then(isInstalled => { console.log('is Installed---->', isInstalled) if (isInstalled) { SendIntentAndroid.openApp("com.myapp2", { "com.myapp2.reason": "just because", "com.myapp2.data": "must be a string", }).then(wasOpened => { console.log('wasOpened------->', wasOpened) }); } else { Linking.openURL(...