Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 690 Bytes

File metadata and controls

30 lines (19 loc) · 690 Bytes

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