Automatically enables the use of the WiFi editor.
This method is mainly useful for headless devices like AndroidTV which don't have a DroidScript UI.
Note: This function is deprecated. in favour of ide.AutoWifi
Example - Auto Enable WiFi
function OnStart()
{
app.SetAutoWifi( true );
}
from native import app
def OnStart():
app.SetAutoWifi(True)