cordova - Get user installed app information [windows phone] -
i have code android below
list<packageinfo> packlist = getpackagemanager().getinstalledpackages(0); (int i=0; < packlist.size(); i++) { packageinfo packinfo = packlist.get(i); if ( ( (packinfo.applicationinfo.flags & applicationinfo.flag_system) != 0) != true) { string appname = packinfo.applicationinfo.loadlabel(getpackagemanager()).tostring(); log.e("app" + integer.tostring(i), appname); } } above code gets information of user installed apps. question simple how achieve same functionality in windows phone (native or hybrid one)?
this not possible.there no such communication existing in present versions. having access information potential data privacy issue. functionality isn't available 3rd party apps on windows phone 7. can pass along data using app2app functionality(available wp8) (check this link).
as far know can list of apps on phone published you. not have access complete list of apps on phone.
Comments
Post a Comment