https://github.com/jstokes/rn-installed-apps
https://github.com/jstokes/rn-installed-apps
android packages react react-native
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jstokes/rn-installed-apps
- Owner: jstokes
- Created: 2017-02-18T23:02:08.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-08-24T00:06:51.000Z (over 7 years ago)
- Last Synced: 2025-04-08T11:05:32.063Z (11 months ago)
- Topics: android, packages, react, react-native
- Language: Java
- Size: 18.6 KB
- Stars: 9
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-list - rn-installed-apps
README
# 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.jstokes.RNInstalledAppsPackage;` to the imports at the top of the file
- Add `new RNInstalledAppsPackage()` to the list returned by the `getPackages()` method
2. 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')
```
3. Insert the following lines inside the dependencies block in `android/app/build.gradle`:
```
compile project(':react-native-installed-packages')
```
## Usage
```javascript
var InstalledApps = require('react-native-installed-packages');
console.log("All packages", InstalledApps.getApps);
console.log("User packages", InstalledApps.getNonSystemApps);
```