Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Android SDK

    • To stop monitoring peripherals in the background set the background peripherals to an empty set

      Code Block
      PassiveBluetoothManager.getInstance().setPassivePeripherals(Collections.emptySet());
  • IOS SDK

    • To disable passive reading, set the peripheralIDs property to an empty array or nil.

      Code Block
      VLDBluetoothPassiveManager.sharedInstance().peripheralIDs = nil
  • Cordova

    • Code Block
      ValidicMobile.BLE.setPassiveReadPeripheralIDs({
          peripheralIDs: [],
      });
  • Xarmin Android Framework Wrapper

    • To stop monitoring peripherals in the background set the background peripherals to null or an empty set

      Code Block
      PassiveBluetoothManager.Instance.PassivePeripherals = null;
  • Xarmin IOS Framework Wrapper

    • To disable passive reading, set the peripheralIDs property to an empty array or nil.

      Code Block
      VLDBluetoothPassiveManager.SharedInstance().PeripheralIDs = null;

...