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 will learn about sync provider notifications in Windows 11 and how to disable or enable it...
In this tutorial, let’s learn how to enable or disable the startup sound in Windows 11. By default, when Windows...
The CameraCaptureTask allows the Windows Phone 7 App to launch the Camera Application . This will be useful when the...