Questions tagged [prism-storeapps]

3 questions
53
votes
1 answer

Retrieve the Current App version from Package

While I can get the assembly version using the following code var assembly = typeof(App).GetTypeInfo().Assembly; var assemblyVersion = assembly.GetCustomAttribute().Version; I would like to retrieve the…
Chris Ballance
  • 33,810
  • 26
  • 104
  • 151
1
vote
1 answer

Windows Phone, Prism.StoreApps: How to avoid activation of a certain page after suspension or termination?

I do want to ensure that in case an app is navigated to a certain page, the app is on another (in my case the previous) page after it was suspended or terminated. In my case the page is for taking photos. I do not want the user to return to this…
Jürgen Bayer
  • 2,993
  • 3
  • 26
  • 51
0
votes
1 answer

WinRT Prism.StoreApps: GetNavigationState doesn't support serialization of a parameter type which was passed to Frame.Navigate

I keep getting the following error, and I don't understand why. It happens on suspend, but only after visiting a page twice. That is to say, the app loads up and I go to the page, then use VS2013 to suspend the app and it works just fine. However,…