10-03-2019 08:58 AM
System.Diagnostics.Process.GetCurrentProcess().Kill();Just wanted to share since it's easy to overlook. Might be one of the reasons your app keeps stopping.
10-18-2019 11:27 AM
10-21-2019 11:59 AM
09-16-2020 01:32 AM
Weitin said:
I think Application.Quit() on Android doesn't properly remove the app, which causes the app to crash next time you launch it. Use this instead:System.Diagnostics.Process.GetCurrentProcess().Kill();Just wanted to share since it's easy to overlook. Might be one of the reasons your app keeps stopping.