Causes the current running APK or its Service to be started automatically when your device boots.
See Also: SetAutoStart
Example - Set Auto Boot
function OnStart()
{
app.SetAutoBoot( true );
app.ShowPopup( "You may reboot your phone now." );
}
Example - Unset Auto Boot
function OnStart()
{
app.SetAutoBoot( false );
app.ShowPopup( "AutoBoot Disabled." );
}