Ennio
Ennio

Reputation: 1157

How can you get the list of app installed on a phone with phonegap or cordova?

Can I get the list of installed app on IOS/Android devices using phonegap/cordova?

Upvotes: 0

Views: 480

Answers (1)

Simon Prickett
Simon Prickett

Reputation: 4123

I believe this is not possible for iOS. For Android you may want to take a look at this plugin.

This uses

android.content.pm.PackageManager

to get a list of installed apps and return details about them. You could also implement your own plugin to do this, check out the Android SDK documentation for PackageManager here.

Upvotes: 1

Related Questions