[Fixed] Exit Android App

Just starting out? Need help? Post your questions and find answers here.
IdeasVacuum
Posts: 143
Joined: Tue Feb 25, 2014 1:27 pm

[Fixed] Exit Android App

Post by IdeasVacuum »

How do you close/exit your Android App programmatically? I can close the one and only window, but the app is still left running, displaying an empty screen!

Code: Select all

CloseWindow(EventWindow())
This seems to work:

Code: Select all

Procedure Exit()
;#---------------
    CloseWindow(EventWindow())
  !window.close();
EndProcedure