Browse Source

android: Exit process after activity shutdown

Hack to help with #1216 a bit

Unfortunately this causes the activity to reopen sometimes, but maybe this can serve as a stopgap for now
rdb 1 year ago
parent
commit
73c6759984
1 changed files with 2 additions and 0 deletions
  1. 2 0
      pandatool/src/deploy-stub/android_main.cxx

+ 2 - 0
pandatool/src/deploy-stub/android_main.cxx

@@ -332,4 +332,6 @@ void android_main(struct android_app *app) {
 
   // Detach the thread before exiting.
   activity->vm->DetachCurrentThread();
+
+  _exit(0);
 }