You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Access the settings service through the device class, for example:
device.Settings.Wifi(State.Enable);
All available settings methods
/// <summary>/// Enable or disable wifi/// </summary>/// <param name="state">Wanted state of wifi</param>voidWifi(Statestate);/// <summary>/// Enable or disable gps/// </summary>/// <param name="state">Wanted state of gps</param>voidGps(Statestate);/// <summary>/// Enable or disable airplane mode/// </summary>/// <param name="state">Wanted state of airplane mode</param>voidAirplaneMode(Statestate);