UNPKG

react-native-my-app-list

Version:

Get user-facing installed apps for React Native Android using privacy-friendly queries instead of QUERY_ALL_PACKAGES permission.

9 lines 261 B
export interface InstalledApp { packageName: string; appName: string; versionName: string; versionCode: number; isSystemApp: boolean; } export declare const getInstalledApps: () => Promise<InstalledApp[]>; //# sourceMappingURL=index.d.ts.map