Skip to content

khorark/rn-openapp

Repository files navigation

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

IMPORTANT ❗ You can open app only Android platform ❗

import { openApp } from "rn-openapp";

const examplePackageId = "com.example.packageid";

openApp(examplePackageId)
  .then(result => cosnole.log(result))
  .catch(e => console.warn(e));

Licence MIT.