I have an Air app that needs to viably run 24/7.
The app closes itself without warning after approximately 1 hour, running on an Android TV Stick.
Here are my logcat readings:
I/ActivityManager( 1234): 211911 kB: air.mycompany.myapp (pid 7629)
I/ActivityManager( 1234): 7629 238272K 224692K 208012K 205652K air.mycompany.myapp
I/ActivityManager( 1234): Process air.mycompany.myapp (pid 7629) has died.
W/ActivityManager( 1234): Force removing ActivityRecord{41378f50 air.mycompany.myapp/.AppEntry}: app died, no saved state
I/WindowManager( 1234): WIN DEATH: Window{412e5718 air.mycompany.myapp/air.mycompany.myapp.AppEntry paused=false}
W/InputDispatcher( 1234): channel '412e5718 air.mycompany.myapp/air.mycompany.myapp.AppEntry (server)' ~ Consumer closed input channel or an error occurred. events=0x8
E/InputDispatcher( 1234): channel '412e5718 air.mycompany.myapp/air.mycompany.myapp.AppEntry (server)' ~ Channel is unrecoverably broken and will be disposed!
W/InputDispatcher( 1234): Attempted to unregister already unregistered input channel '412e5718 air.mycompany.myapp/air.mycompany.myapp.AppEntry (server)'
W/WindowManager( 1234): Force-removing child win Window{41390cd8 SurfaceView paused=false} from container Window{412e5718 air.mycompany.myapp/air.mycompany.myapp.AppEntry paused=false}
W/WindowManager( 1234): Force-removing child win Window{4137d548 SurfaceView paused=false} from container Window{412e5718 air.mycompany.myapp/air.mycompany.myapp.AppEntry paused=false}
I/WindowManager( 1234): WINDOW DIED Window{412e5718 air.mycompany.myapp/air.mycompany.myapp.AppEntry paused=false}
First thoughts are that it is a memory leak (something i am trying to figure out, im cycling through movieclips and i think they are stakcing up in the memory rather then being reused properly)
Any thoughts?