Skip to content

Ivanti Solution Partner

Velocity browser

To use the Velocity browser with your scanner, the scanned data must be broadcast as an Intent with the action name com.wavelink.intent.action.BARCODE.

To broadcast this Intent, you need to select the Intent integration path and enter the action name in the configuration file:

  1. Log in to Insight Webportal on your desktop.
  2. At the top, under Device Visibility, select Configurations.
  3. Click Create New Configuraition.
  4. Select Insight Mobile (Android) and click Next.
  5. Select Connectivity Settings.
  6. Under Integration Path, select Intent.
    The Intent textbox displays.
  7. Copy com.wavelink.intent.action.BARCODE into the Intent textbox.
    Portal1
  8. At the bottom of the page, click Save.

After you create your desired configuration, upload the configuration file to your Android device.

MARK Display Velocity browser integration

You can use the Velocity browser to integrate with the ProGlove's MARK Display scanner. The instructions and the necessary files are provided in the Velocity/MARK Display Demo Kit below.

To download the Velocity/MARK Display Demo Kit, click here.

How to receive button events for Ivanti's Velocity browser

You can configure the button trigger to send a barcode Intent to the integrated Ivanti Velocity browser on double-click in order to send notifications to the worker's MARK Display scanner.

To enable this event:

  1. Go to Insight Webportal.
  2. At the top, under Device Visibility, select Configurations.
    The list of existing configurations displays.
  3. At the bottom of the page, select Create New Configuration.

    Note: Alternatively, you can click the pencil icon next to an existing configuration to modify it.

  4. Select Insight Mobile (Android) and click Next.

  5. Under Workflow Rules, click Add Rule.
  6. Under Trigger, select Double-click.
  7. Under Action, select Send Intent.
  8. Click Save Action.
  9. Click Save Rule.
  10. Download your configuration and activate it on your Android device.

Receiving this event can be done by listening for broadcast Intents of the following structure:

  • Action: com.wavelink.intent.action.BARCODE
  • Extras:
    • com.proglove.api.extra.BARCODE_DATA="BUTTON_PRESSED"
    • com.proglove.api.extra.BARCODE_SYMBOLOGY="SPECIAL_BUTTON"
    • String in com.proglove.api.extra.DISPLAY_BUTTON contains the ID of the pressed button.

How to start pairing barcode from the Velocity browser

Use this code snippet to start the PairingActivity with the Action.launch call from Ivanti Velocity browser:

Action.launch({
    action:  "android.intent.action.MAIN",
    package: "de.proglove.connect",
    class: "de.proglove.coreui.activities.PairingActivity"
});

Note: On starting the PairingActivity the scanner is disconnected (which means the user has to pair again). However, you can check beforehand if the scanner is connected or disconnected by sending an Intent to com.proglove.api.GET_SCANNER_STATE.

Please note that this results in 3 different status callbacks to com.proglove.api.SCANNER_STATE: - Disconnected - Connnected - No response.

In the case of no response, you can still use the Action.launch, in which case the user has to pair again.