installed-apps
v0.0.2
Published
Gets a list of installed applications
Downloads
3
Readme
installed-apps
Gets a list of installed applications
Install
npm install installed-apps
npx cap sync
API
getInstalledApps()
getInstalledApps() => Promise<{ value: string; }>
This method returns all the installed applications in your device! It returns JSON string containing an array of objects having the following structure:
[{
"packageName": "",
"encodedIcon": "" -- Base64 encoded string
}]
NOTE: Currently only supported for Android
Returns: Promise<{ value: string; }>