0.0.6 • Published 8 years ago

react-native-installed-apps v0.0.6

Weekly downloads
16
License
MIT
Repository
github
Last release
8 years ago

react-native-installed-apps

npm version

React Native module which provides list of installed IOS applications.

Install

npm install --save react-native-installed-apps

Linking

react-native link react-native-installed-apps

Usage

import AppList from 'react-native-installed-apps';

AppList.getAll((apps) => {
  console.log(apps); // array of objects [{ app: 'AppName.app', appPath: '/path/of/the/app', info: plistInfoObject }]
});

MIT © Dmitry Pavlovsky