Reputation: 1157
Can I get the list of installed app on IOS/Android devices using phonegap/cordova?
Upvotes: 0
Views: 480
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