Skip to content

Latest commit

 

History

History
33 lines (18 loc) · 808 Bytes

index.md

File metadata and controls

33 lines (18 loc) · 808 Bytes

RestartApp

The RestartApp extension gives you the ability to force a restart of your application, terminating the current process and triggering a relaunch of the application.

Features

  • Restart your running application on the following platforms:
    • Android
  • Single API interface - your code works across supported platforms with no modifications
  • Sample project code and ASDocs reference

Documentation

The wiki forms the best source of detailed documentation for the extension along with the asdocs.

Quick Example:

if (RestartApp.service.canRestartApplication)
{
    RestartApp.service.restartApplication();
}