rn-openapp
Motivation
This package help you openned other user app on android phone. You only need know package id.
Installation
$ npm install rn-openapp --save
Mostly automatic installation
$ react-native link rn-openapp
Usage
import { openApp } from "rn-openapp";
const examplePackageId = "com.example.packageid";
openApp(examplePackageId)
.then(result => cosnole.log(result))
.catch(e => console.warn(e));