External Configuration Support

This Support Application feature enables loading configurations from Play Store Managed Configurations and Intent Actions.

Overview

Support Application typically gets its configuration from the BlueFletch Launcher or from configuration files loaded onto the device via an MDM. In version 5.13.8, the Support Application now provides two additional methods for loading configurations: Play Store Managed Configurations and Intent Actions. With External Configuration Support, Support Application can store configurations within application data storage.

User Guide

To use Play Store Managed Configurations, you need to add the following fields to the application's Play Store listing:

  • configUrl: A URL referencing the desired configuration.

  • configChecksum: A configuration file checksum. This field is optional.

To use Intent Actions, you need to create an Intent Action with the action name com.bluefletch.support.config.ACTION_LOAD_CONFIG. The Intent Action should have the following extras:

  • url: A URL referencing the desired configuration. This is required.

  • org_id: The organization ID as found in the BlueFletch Portal. This is required.

Feature Configuration

To set up External Configuration Support for a particular device profile or device group, please follow the steps below:

Configuring with ADB Command

To enable Support Application to download the configuration file from the specified URL, you need to specify the intent action, the package name, and extra strings that will be passed to the intent. In the example below, com.bluefletch.ems.support.ACTION_DOWNLOAD_CONFIG is the intent action and com.bluefletch.ems.support is the package name.

adb shell am broadcast -a com.bluefletch.ems.support.ACTION_DOWNLOAD_CONFIG -p com.bluefletch.ems.support --es url https://somewhere.com/config.json --es org_id organizationId

Configuring with AirWatch Command

Use the example below to configure with AirWatch Command.

mode=explicit,action=com.bluefletch.ems.support.ACTION_DOWNLOAD_CONFIG,package=com.bluefletch.ems.support,extraString=url=https://somewhere.com/config.json,extraString=org_id=organizationId,broadcast=false

Configuring with SOTI Command

Use the example below to configure with SOTI Command.

sendintent -a "intent:#Intent;action=com.bluefletch.ems.support.ACTION_DOWNLOAD_CONFIG;component=com.bluefletch.ems.support;S.url=https://somewhere.com/config.json;S.org_id=organizationId;end;"

External Configuration Support was introduced in Support Application 5.13.8. Feature updated in Support Application 5.14.4.

Last updated