New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-native-open-apps

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-open-apps

React Native module to open other application for android.

latest
npmnpm
Version
0.0.6
Version published
Maintainers
1
Created
Source

react-native-open-apps

Platform Version Download License

This package is support by daridasar.com

React Native module to open other application.

  • Work for android
  • Support typescript

Table of contents

Installation

If using yarn:

yarn add react-native-open-apps

If using npm:

npm i react-native-open-apps

Usage

import React from "react";
import { View, Text } from "react-native";
import OpenApplication from "react-native-open-apps";

const App = () => {
  return (
    <TouchableOpacity
      onPress={() => {
        OpenApplication.openApplication("com.your.app");
      }}
    >
      <Text>Your App</Text>
    </TouchableOpacity>
  );
};

export default App;

Keywords

react-native

FAQs

Package last updated on 02 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts