c# - Win Phone 8 app and checking apps from same publisher installed on device -
in msdn documentation says within application can check if app has been installed same customer , launched within app. part of documentation following link below
launching, resuming, , multitasking windows phone 8
you can use apis windows.phone.management.deployment
namespace see if other apps publisher id installed on phone.
if they’re installed, can use api launch them. demonstrate, following example enumerates apps current publisher id , launches first app in enumeration (unless app happens current app).
ienumerable<package> apps = windows.phone.management.deployment.installationmanager.findpackagesforcurrentpublisher(); apps.first().launch(string.empty);
i want check existence of app on device publisher id, without publishing application or making beta test takes time.
i can publisher id company publishing app (this external me). question is, there way test in real time while debugging code. example changing publisher id in manifest?
Comments
Post a Comment