Is it possible to get system events such as for Android Activity life cycle events (onCreate, onStart, onPause, onResume...) in Minko ?
I can see in Canvas.hpp for example :
Signal<AbstractCanvas::Ptr, uint, uint>::Ptr _resized;
and
Signal<AbstractCanvas::Ptr, std::shared_ptr<input::Joystick>>::Ptr _joystickAdded;
Signal<AbstractCanvas::Ptr, std::shared_ptr<input::Joystick>>::Ptr _joystickRemoved;
which I believe are "system" events being sent to the app, but i can't seem to find the ones i am looking for, or should i be looking in another class ?
For example, the audio example of the frameworks plays perfectly on Android phone but keep on playing the music after the activity / application has exited "visually" . (it only ends if you manually kill the running process)
Thanks.