React Native module which provides list of installed IOS applications.
npm install --save react-native-installed-apps
react-native link react-native-installed-apps
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