A react-native module for launching external applications using package name
$ npm install react-native-intent-package --save
$ react-native link react-native-intent-package
or
$ rnpm link react-native-intent-package
import IntentPackage from 'react-native-intent-package';
IntentPackage.openPackage('com.google.android.youtube').then((b) => {
//some logic
}).catch((err) => {
console.log(err);
});