Is it possible to launch a different windows store app when a user clicks on a button within my app?
|
Sadly, it is not possible as Win-RT apps are not allowed to launch other apps. There's a workaround that allows you to open a specific app if it's registered to open with a specific URL: http://msdn.microsoft.com/en-us/library/windowsphone/develop/jj206987(v=vs.105).aspx I'm not sure if it will help much, but you can open the store and go to a specific store app page with:
Where the storeID looks like '30416[AppName].[AppName]_94hq21bnosq1p' and can be obtained from the web store source code: http://apps.microsoft.com/webpdp/en-gb/app/Fhotoroom/4d91298a-07cb-40fb-aecc-4cb5615d53c1 |
|||||||
|
|
Yes, you can launch other Windows Store Apps from your app like say Bing Maps. The Maps app supports protocol activation, which means you can programmatically invoke the Maps app from your own Windows Store app, using a special url syntax. Windows allows an app to register to become the default handler for a certain URI scheme name. Both desktop and Windows Store apps can register to be a default handler for a URI scheme name. You can see http://devhammer.net/blog/w8wil-6-leverage-the-maps-app-for-location-based-features to get the idea. The official docs for the Maps app uri scheme, including all of the available parameters, can be found at: http://msdn.microsoft.com/en-us/library/windows/apps/jj635237.aspx |
|||
|
|