How to Enable Fast App Resume in Windows Phone 8 App?

This article will explain in simple steps on how to enable Fast App Resume in Windows Phone 8 App.

The Windows Phone 8 includes a new feature called “Fast App Resume” which adds a capability to the Windows Phone app to resume the suspended state(if available) instead of app being relaunched .

How to Enable Fast App Resume in Windows Phone 8 App?

To enable the Fast App Resume, the developer needs to modify the app’s WMAppManifest.xml file and set the ActivationPolicy value to “Resume” in the DefaultTask element.

<Tasks>

<DefaultTask Name="_default" NavigationPage="MainPage.xaml" ActivationPolicy="Resume" />

</Tasks>

The ActivationPolicy takes the following values

– Resume (Fast App Resume – FAS)

– Replace – Default Value

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...