We have an application that is part of the Amazon Appstore webapp program, which allows web applications to initially appear in their Appstore, for example. Kindle Fire HDX. Our problem: the application does not exit and does not close when closed, it is always stored in some kind of permanent cache, which causes problems with our concept of user sessions, web sockets, remote user synchronization, etc. (This is a multi-user virtual world). How to force the application to properly clean itself when closed by the user?
(In the Xcode settings, the comparable boolean would be "UIApplicationExitsOnSuspend" ...)
source
share