Available Intents

Intent to clear all cookies

To clear all the cookies in the BlueFletch Browser, issue the following broadcast intent:

Action: com.bluefletch.ems.browser.CLEAR_COOKIES

Type: Broadcast

Extras: None

ADB example:

adb shell am broadcast -a "com.bluefletch.ems.browser.CLEAR_COOKIES"

Intent to close all browser windows

To close all open browser windows, issue the following broadcast intent:

Action: com.bluefletch.ems.browser.CLOSE_BROWSER

Type: Broadcast

Extras: None

ADB example:

adb shell am broadcast -a "com.bluefletch.ems.browser.CLOSE_BROWSER"

Intent to set a configuration value

To set a specific configuration value:

Action: com.bluefletch.ems.browser.ACTION_SET_CONFIG

Type: Action

Extras: Key - Value pairs of the configuration key and value

ADB example:

adb shell am start -a com.bluefletch.ems.browser.ACTION_SET_CONFIG --es showTitle "true"

Intent to reset all configuration to default

To set a specific configuration value:

Action: com.bluefletch.ems.browser.ACTION_RESET_CONFIG

Type: Action

Extras: None

ADB example:

adb shell am start -a com.bluefletch.ems.browser.ACTION_RESET_CONFIG

Last updated