我正在为 WP8 开发一个应用程序。如果 wp8 设备安装了某些特定应用程序(即 WP8 Facebook 应用程序),我可以检查(以编程方式)吗?
问问题
2045 次
1 回答
4
You cannot get the list of applications that are installed on the Windows Phone that are published by someone other than the publisher of the calling application.
There is a way, however, to get the list of applications that are installed on the device and are originating from the publisher of the caller app. Here is what I am talking about:
IEnumerable<Package> apps = Windows.Phone.Management.Deployment.InstallationManager.FindPackagesForCurrentPublisher();
apps.First().Launch(string.Empty);
This required your app to run on a Windows Phone 8 device.
于 2013-10-03T12:07:18.820 回答