Reputation: 10971
I have an application that when switched gets terminated and all the session data are lost.
I check the Event Viewer app and found the following info message:
Package [My application package GUID] was terminated due to low system resources
What can be the reason for this and how to solve it ?
Upvotes: 0
Views: 199
Reputation: 537
Did you test your application by Windows App Certification Kit?
http://msdn.microsoft.com/en-us/library/windows/apps/hh694081.aspx
Maybe this test could be helpful to understand the problem.
Upvotes: 1
Reputation: 17
You may be have lots of "Resource packages". Try delete some of them, and clean any additional system resources. Or it can be having by bad design of application lifecycle. You can check it out from here.
Upvotes: 0