java.lang.Object | |
↳ | com.samsung.android.knox.ex.peripheral.PeripheralManager |
Deprecated
in API level 37
NOTE: This Class is not available since Android 15.
Public interface to manage peripheral service
API level 34 |
Knox 3.7.1 |
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
int | RESULT_CODE_FAIL_PERMISSION_ERROR |
Deprecated
in API level 37 NOTE: This Variable is not available since Android 15. |
|||||||||
int | RESULT_CODE_FAIL_SERVICE_UNAVAILABLE |
Deprecated
in API level 37 NOTE: This Variable is not available since Android 15. |
|||||||||
int | RESULT_CODE_FAIL_WRONG_ARGUMENT |
Deprecated
in API level 37 NOTE: This Variable is not available since Android 15. |
|||||||||
int | RESULT_CODE_INVALID |
Deprecated
in API level 37 NOTE: This Variable is not available since Android 15. |
|||||||||
int | RESULT_CODE_SUCCESS |
Deprecated
in API level 37 NOTE: This Variable is not available since Android 15. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. | |||||||||||
Deprecated
in API level 37
NOTE: This API is not available since Android 15. |
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Deprecated
in API level 37
NOTE: This Variable is not available since Android 15.
Indicates that callee doesn't have permission
API level 34 |
KNOX 3.7.1 |
Deprecated
in API level 37
NOTE: This Variable is not available since Android 15.
Indicates that peripheral service is not available
API level 34 |
KNOX 3.7.1 |
Deprecated
in API level 37
NOTE: This Variable is not available since Android 15.
Indicates that argument is wrong
API level 34 |
KNOX 3.7.1 |
Deprecated
in API level 37
NOTE: This Variable is not available since Android 15.
Indicates that plugin is not available
API level 34 |
KNOX 3.7.1 |
Deprecated
in API level 37
NOTE: This Variable is not available since Android 15.
Indicates success
API level 34 |
KNOX 3.7.1 |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for making beep sound in the peripheral. (only for peripherals which support this functionality)
peripheralId | peripheral id to update firmware.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
milliseconds | duration to make beep sound (milliseconds) |
option | Bundle data (optional) if option has key 'PeripheralConstants.BeepSoundEffect.REPEAT_INT', peripheral makes beep sound multiple time as value of this key, otherwise, makes beep sound only once. 'PeripheralConstants.BeepSoundEffect.INTERVAL_INT' is need to config interval time (milliseconds) |
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
Bundle option = new Bundle(); // optional |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to clear memory of peripheral device
peripheralId | peripheral id to clear memory.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
clearOption | Clear option. PeripheralConstants.DataClearOption |
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).clearMemory(peripheralId, clearOption |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for connecting specified bluetooth peripheral.
This could be used when peripheral is disconnected unexpectedly for following reasons (ex. out of range, battery off..).
getBluetoothPeripherals(String, PeripheralResultListener)
retrieves Bluetooth peripheral list have paired before.
peripheral | BluetoothDevice to connect. |
---|---|
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
mPeripheralManager.connectPeripheral(device, |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to disable PeripheralService.
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
enable(Bundle)
isEnabled()
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for disconnecting specified peripheral.
peripheralId | peripheral id to update firmware.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
mPeripheralManager.disconnectPeripheral(peripheralId, |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for showing specified text on the display of the peripheral. (only for peripherals which support this functionality)
peripheralId | peripheral id to update firmware.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
text | text message to show in peripheral screen |
milliseconds | time to show text message (milliseconds) |
option | Bundle data (optional) if option has key 'PeripheralConstants.DisplayText.CLEAR_DISPLAY_BOOL' and the value is 'false', peripheral display doesn't clear screen and appends test message. otherwise (option is null or empty or 'PeripheralConstants.DisplayText.CLEAR_DISPLAY_BOOL' is true), peripheral clears screen(display) and shows text message. |
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
Bundle option = new Bundle(); // optional |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to enable PeripheralService by using Profile.
This API applies profile to PeripheralService.
Once PeripheralService is enabled with wrong profile,
you should disable PeripheralService by disable()
and enable PeripheralService with new profile.
Profile hierarchy
Layer | Key | Data Type | etc |
Profile | KEY_PROFILE_NAME_STR |
String | Mandatory. Since 3.7.1 |
Profile | KEY_PLUGIN_BUNDLE_LIST |
List<Bundle> | Mandatory. Since 3.7.1 |
Plugin | KEY_PLUGIN_NAME_STR |
String | Mandatory. Since 3.7.1 |
Plugin | KEY_PLUGIN_PACKAGE_NAME_STR |
String | Mandatory. Since 3.7.1 |
Plugin | KEY_PERIPHERAL_BUNDLE_LIST |
List<Bundle> | Mandatory. Since 3.7.1 |
Peripheral | KEY_PERIPHERAL_NAME_STR |
String | Mandatory. Since 3.7.1 |
Peripheral | KEY_PERIPHERAL_CONNECTIVITY_BUNDLE_LIST |
List<Bundle> | Mandatory. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_CONNECTIVITY_TYPE_STR |
String | Mandatory. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_CONNECTIVITY_IDENTIFIER_STR |
String | Mandatory. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_BARCODE_DATA_PROCESS_MODE_STR |
String | Optional. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_PREFIX_STR |
String | Optional. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_SUFFIX_STR |
String | Optional. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_BARCODE_ENABLE_TIMESTAMP_BOOL |
boolean | Optional. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_ENABLE_BEEP_SOUND_BOOL |
boolean | Optional. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_ENABLE_CHECK_DUPLICATED_BARCODE_BOOL |
boolean | Optional. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_BARCODE_ENABLED_SYMBOLOGY_LIST |
List<String> | Optional. Since 3.7.1 |
Connectivity | KEY_PERIPHERAL_BARCODE_ENABLED_OPTION_LIST |
List<String> | Optional. Since 3.7.1 |
profile | peripheral profile |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
Belows are just temporary sample code. usage may be changed
// if peripheralService is enabled, disable peripheralService to change profile. |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to get connected peripheral devices from all plugins
listener | listener to which result is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.public void getAvailablePeripheral(Context context) { |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for getting all paired bluetooth peripherals.
option | option for getting bluetooth peripheral.ALL : retrieves all paired bluetooth devices.RECENT : retrieves latest paired bluetooth devices. |
---|---|
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
mPeripheralManager.getBluetoothPeripherals(PeripheralConstants.BtPeripheralListOption.ALL, |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to get configuration of specified peripheral
PeripheralResultListener.onResult retrieves data
which is listed in param List<String> keyList
from specified peripheral (param peripheralId).
supported keys
peripheralId | peripheral id to get configuration from.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
keyList | list of keys. PeripheralResultListener.onSuccess retrieves values of these keys |
listener | listener to which result is to be delivered. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.Belows are just temporary sample code. usage may be changed
private void getConfiguration(Context context, String peripheralId) { |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to get Connection Profile. Connection Profile means profile of BLUETOOTH, class of USB
peripheralId | peripheral id to update firmware.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).getConnectionProfile(peripheralId, |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to get information of all peripherals and plugins
listener | listener to which result is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.Belows are just temporary sample code. usage may be changed
PeripheralManager.getInstance(context).getInformation( |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to create an instance of PeripheralManager class.
context | context of the application or service using this class |
---|
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for getting barcode data required for discovery and pairing of bluetooth peripheral.
device discovers Bluetooth peripheral before time-out DISCOVER_TIMEOUT
or calling stopPairingPeripheral(PeripheralResultListener)
peripheralId | peripheral id to update firmware.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
mPeripheralManager.getPairingBarcodeData(peripheralId, |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to get stored data. barcode data is stored in peripheral, if data process mode is STORE
peripheralId | peripheral id to get stored data.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
listener | listener to deliver result. NOTE : listener notifies 'get stored data is started'. doesn't retrieve stored barcode data. PeripheralDataListener.onReceive(), which is registered by registerDataListener retrieves barcode data. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.PeripheralManager.getInstance(context).getStoredData(peripheralId, |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for getting all supported peripheral list from all plugins, regardless of current connection status.
listener | listener to which result is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.public void getSupportedPeripherals(Context context) { |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to check whether PeripheralService is enabled or not.
true
if service is enabled, false
otherwise.API level 34 |
KNOX 3.7.1 |
Global Scope |
enable(Bundle)
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to check whether PeripheralService is started or not.
true
if service is started, false
otherwise.API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to register listener which retrieves barcode data
listener | listener to which barcode data is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
Belows are just temporary sample code. usage may be changed
PeripheralManager.getInstance(context).registerDataListener( |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to register listener which retrieves information of all peripherals and plugins
listener | listener to which information is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).registerInfoListener( |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to register listener which retrieves state change from peripherals
listener | listener to which state is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
Belows are just temporary sample code. usage may be changed
PeripheralManager.getInstance(context).registerStateListener( |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to reset peripheral configuration
peripheralId | peripheral id to reset peripheral configuration.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
resetOption | peripheral reset option.
Please find PeripheralConstants.DataResetOption |
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).resetPeripheral(peripheralId, resetOption |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to set configuration of specified peripheral.
supported keys
Key | Data Type | etc |
KEY_PERIPHERAL_BARCODE_DATA_PROCESS_MODE_STR |
String | Since 3.7.1 |
KEY_PERIPHERAL_PREFIX_STR |
List<Bundle> | Since 3.7.1 |
KEY_PERIPHERAL_SUFFIX_STR |
String | Since 3.7.1 |
KEY_PERIPHERAL_BARCODE_ENABLE_TIMESTAMP_BOOL |
List<Bundle> | Since 3.7.1 |
KEY_PERIPHERAL_ENABLE_BEEP_SOUND_BOOL |
String | Since 3.7.1 |
KEY_PERIPHERAL_ENABLE_CHECK_DUPLICATED_BARCODE_BOOL |
List<Bundle> | Since 3.7.1 |
KEY_PERIPHERAL_BARCODE_ENABLED_SYMBOLOGY_LIST |
String | Since 3.7.1 |
KEY_PERIPHERAL_BARCODE_ENABLED_OPTION_LIST |
List<Bundle> | Since 3.7.1 |
peripheralId | peripheral id to set configuration.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
data | key and value to set configuration |
listener | listener to which result is to be delivered. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
Belows are just temporary sample code. usage may be changed
public void setConfiguration(Context context, String peripheralId) { |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to change Connection Profile. (ex. SPP -> HID) Connection Profile means profile of BLUETOOTH, class of USB
peripheralId | peripheral id to update firmware.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
connectionProfile | Connection profile. Please find PeripheralConstants.ConnectionProfile |
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).setConnectionProfile(peripheralId, mode |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to start PeripheralService.
Note : listener.onSuccess() doesn't guarantee profile validity.
PeripheralService broadcasts intent ACTION_SERVICE_START
to notify result of profile validation since Knox3.8(API level 35)
listener | listener to which result is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).start(profile, |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to enable auto trigger mode
peripheralId | peripheral id to enable auto trigger mode.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).startAutoTriggerMode(peripheralId, clearOption |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to start barcode scan
peripheralId | peripheral id to start barcode scan.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
listener | listener to deliver result. NOTE : listener notifies 'barcode scan is started'. doesn't retrieve barcode data. PeripheralDataListener.onReceive(), which is registered by registerDataListener retrieves barcode data. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
Belows are just temporary sample code. usage may be changed
PeripheralManager.getInstance(context).startBarcodeScan(peripheralId, |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to stop PeripheralService.
listener | listener to which result is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).stop( |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to disable auto trigger mode
peripheralId | peripheral id to disable auto trigger mode.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
PeripheralManager.getInstance(context).stopAutoTriggerMode(peripheralId, clearOption |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for stopping ongoing discovery and pairing of bluetooth peripheral.
getPairingBarcodeData(String, PeripheralResultListener)
starts discovering Bluetooth peripherals.
listener | listener to deliver result. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
mPeripheralManager.stopPairingPeripheral( |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to unregister listener which retrieves barcode data
listener | listener to which barcode data is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to unregister listener which retrieves information of all peripherals and plugins
listener | listener to which information is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API to unregister listener which retrieves state change from peripherals
listener | listener to which state is to be delivered. |
---|
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong.SecurityException | If caller does not have required permissions |
---|
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 34 |
KNOX 3.7.1 |
Global Scope |
Deprecated
in API level 37
NOTE: This API is not available since Android 15.
API for making vibration in the peripheral. (only for peripherals which support this functionality)
peripheralId | peripheral id to update firmware.getAvailablePeripherals(PeripheralResultListener) retrieves list of available peripheralId. |
---|---|
milliseconds | duration to make vibration (milliseconds) |
option | Bundle data (optional) if option has key 'PeripheralConstants.VibrationEffect.REPEAT_INT', peripheral makes vibration multiple time as value of this key, otherwise, makes vibration only once. 'PeripheralConstants.VibrationEffect.INTERVAL_INT' is need to config interval time (milliseconds) |
listener | listener to deliver result. |
RESULT_CODE_SUCCESS
if success,
RESULT_CODE_FAIL_SERVICE_UNAVAILABLE
if peripheral service is not available,
RESULT_CODE_FAIL_WRONG_ARGUMENT
if argument is wrong. SecurityException | If caller does not have required permissions |
---|
Bundle option = new Bundle(); // optional |
The use of this feature requires the caller to have the "com.samsung.android.knox.permission.KNOX_NDA_PERIPHERAL_RT" permission. |
API level 35 |
KNOX 3.8 |
Global Scope |