Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open Other app from ReactNative?

How to open other apps (Gmail, Camera) from ReactNative. How can I pass data from current scene to other app?

like image 444
Akashsingla19 Avatar asked Mar 27 '17 07:03

Akashsingla19


1 Answers

I found this npm library react-native-app-link which can open other apps. This is based on deep linking, if you have any deep links then this library can help. This doesn't open apps just by giving the android package name or ios app id.

https://github.com/FiberJW/react-native-app-link

like image 178
SkyTreasure Avatar answered Oct 18 '22 21:10

SkyTreasure