Page 1 of 1

[Fixed] Exit Android App

Posted: Sat Jun 10, 2017 2:23 pm
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