npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

expo-android-app-list

v1.1.0

Published

Get a list of installed Android apps

Readme

ExpoAndroidAppList

expo-android-app-list is an Expo module that allows you to retrieve information about installed applications on Android devices.

Features

  • Get a list of all installed applications on an Android device
  • Retrieve package names, app names, and installation details

Installation

npx expo install expo-android-app-list

Configuration

This package requires the QUERY_ALL_PACKAGES permission to function. The permission is included in the code of expo-android-app-list.

⚠️ Important Note: The QUERY_ALL_PACKAGES permission is considered sensitive. If you plan to publish your app on the Google Play Store, you may need to justify the use of this permission in your Google Play Store listing.

Usage

getAll

The getAll() method returns an array of objects containing information about each installed application:

import { ExpoAndroidAppList } from "expo-android-app-list";

const apps = await ExpoAndroidAppList.getAll();
[
  {
    packageName: "com.example.app",
    appName: "Example App",
    versionName: "1.0.0",
    versionCode: 1,
    firstInstallTime: 1234567890,
    lastUpdateTime: 1234567890,
  },
  // ...
];

getPackageDetails

The getPackageDetails() method returns the details of an installed application.

import { ExpoAndroidAppList } from "expo-android-app-list";

const apps = await ExpoAndroidAppList.getPackageDetails("com.example.app");
{
  packageName: "com.example.app",
  appName: "Example App",
  versionName: "1.0.0",
  versionCode: 1,
  firstInstallTime: 1234567890,
  lastUpdateTime: 1234567890,
},

getAppIcon

To display app icons, you can use the getAppIcon() method along with expo-image. This methods is async because we need to convert a drawable to PNG.

import { ExpoAndroidAppList } from 'expo-android-app-list';
import { Image } from 'expo-image';

const icon = await ExpoAndroidAppList.getAppIcon("com.example.app", 100);

<Image
  source={{
    cacheKey: "com.example.app",
    uri: `data:image/png;base64,${icon}`,
  }}
  style={{ width: 100, height: 100 }}
/>

getNativeLibraries

The getNativeLibraries() method allows you to retrieve a list of native libraries (.so files) used by an Android application:

const libraries =
  await ExpoAndroidAppList.getNativeLibraries("com.example.app");

getFiles

The getFiles() method allows you to search for and read files which might be included in the APK:

// Search for specific files
const files = await ExpoAndroidAppList.getFiles("com.example.app", [
  "config.json",
]);

const config = files?.[0].content;

getPermissions

The getPermissions() method retrieves all permissions that an app can request:

const permissions = await ExpoAndroidAppList.getPermissions("com.example.app");

const hasCameraPermission = permissions.includes("android.permission.CAMERA");

ExpoAndroidAppList powers ReactRaptor

This package powers ReactRaptor, an app for React Native developers that helps discover which Android apps are built with React Native. ReactRaptor uses ExpoAndroidAppList to scan installed applications and identify React Native-based apps.

License

MIT

Contributing

Contributions are welcome! Feel free to submit a Pull Request.