onDestroy app does not exit

hi all it’s happen that when i launch onDestroy to my jme3 android app i get just 07-30 00:45:34.948: INFO/OGLESContext(17962): Display destroyed.

but tha jme3 app remain freezed in the phone screen.

how do i exit a jme3 android app?

you should not call onDestroy(), that gets called by android.



To exit your activity and therefor also your jme3 app call

[java]

youractivity.finish();

[/java]

i solved with System.exit