Reputation: 106
I'm looking for a solution that helps me, with performing a restart to the native app programmatically.
I'm using the android platform only
Upvotes: 0
Views: 335
Reputation: 106
At the end I've used android.os.Process.killProcess(android.os.Process.myPid()); inside of setTimeout witch working in most cases... and for iphone i used exit(0) or exit();
my code is looks like this:
Upvotes: 1