getdeviceallapp

1.0.5 • Public • Published

Manual installation

Android

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

Methods

1 - getApps()

2 - getNonSystemApps()

3 - getSystemApps()

Return Result

  • packageName
  • versionName
  • versionCode
  • firstInstallTime
  • lastUpdateTime
  • appName
  • icon // Base64
  • apkDir
  • size // Bytes

Usage

import RNAndroidInstalledApps from 'react-native-android-installed-apps';


RNAndroidInstalledApps.getApps()
      .then(apps => {
        this.setState({apps})
      })
      .catch(error => {
        alert(error);
      });

/getdeviceallapp/

    Package Sidebar

    Install

    npm i getdeviceallapp

    Weekly Downloads

    0

    Version

    1.0.5

    License

    ISC

    Unpacked Size

    1.14 MB

    Total Files

    130

    Last publish

    Collaborators

    • npm_aron