react-native-installed-packages

0.2.0 • Public • Published

react-native-installed-packages

Getting started

$ npm install react-native-installed-packages --save

Mostly automatic installation

$ react-native link react-native-installed-packages

Manual installation

Android

  1. Open up android/app/src/main/java/[...]/MainActivity.java
  • Add import com.reactlibrary.RNInstalledAppsPackage; to the imports at the top of the file
  • Add new RNInstalledAppsPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':react-native-installed-packages'
    project(':react-native-installed-packages').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-installed-packages/android')
    
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
      compile project(':react-native-installed-packages')
    

Usage

var InstalledApps = require('react-native-installed-packages');
 
console.log("All packages", InstalledApps.getApps);
console.log("User packages", InstalledApps.getNonSystemApps);

/react-native-installed-packages/

    Package Sidebar

    Install

    npm i react-native-installed-packages

    Weekly Downloads

    0

    Version

    0.2.0

    License

    MIT

    Unpacked Size

    13.6 kB

    Total Files

    10

    Last publish

    Collaborators

    • jeffecu88