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
I followed the installation guides on readme file, but i gaves me this error `Project with path ':RNSendIntentModule' could not be found in project ':app'` So i tried to change...
Hi, I have a background service running and there I call: ```SendIntentAndroid.openApp('com.foobar')``` But the app is not opening to the foreground when triggered in the background. The function is called,...
This will open the default / selected clock app and create an alarm. I wrote how to use it in the readme.md
is it possible to use openApp or openAppWithData with ACTION_EDIT intent?
Sometimes during build we get the following error. Can't seem to track down what is causing it. Version is `"react-native-send-intent": "^1.3.0"` ``` > Task :react-native-send-intent:generateDebugRFile FAILED Execution optimizations have been...
I get this error when i use: SendIntentAndroid.openAppWithData("android.intent.ACTION_VIEW", "https://www.w3schools.com/html/mov_bbb.mp4"); error: [Unhandled promise rejection: TypeError: RNSendIntentAndroid.openAppWithData is not a function. (In 'RNSendIntentAndroid.openAppWithData(packageName, dataUri, mimeType, extras || {})', 'RNSendIntentAndroid.openAppWithData' is undefined)] how...
I am attempting to translate this `am` command into a `react-native-send-intent` call: ```bash am start --user 0 -n com.retroarch.aarch64/com.retroarch.browser.retroactivity.RetroActivityFuture -e ROM {file.path} -e LIBRETRO /data/data/com.retroarch.aarch64/cores/fceumm_libretro_android.so -e CONFIGFILE /storage/emulated/0/Android/data/com.retroarch.aarch64/files/retroarch.cfg -e QUITFOCUS...
(at /node_modules/react-native-send-intent/android/src/main/java/com/burnweb/rnsendintent/RNSendIntentModule.java) among below codes ``` @ReactMethod public void openAppWithUri(String intentUri, ReadableMap extras, final Promise promise) { try { Intent intent = Intent.parseUri(intentUri, Intent.URI_INTENT_SCHEME); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); Intent existPackage = this.reactContext.getPackageManager().getLaunchIntentForPackage(intent.getPackage()); if...
i've tested this method on android 7 and react native 0.55 download started and it seems download finished but file not saved the code i've used : `SendIntentAndroid.installRemoteApp('http://dl.apktops.ir/apps/2018/07/KillApps_Close_all_apps_running_Pro_v1.8.13_Apktops.ir.apk',` `'KillApps_Close_all_apps_running_Pro_v1.8.13_Apktops.ir.apk').then((installWasStarted)` =>...