@@ -12,7 +12,7 @@ Forget about AccessMgr, StageNow, EMDK, certificates, application signature... c
1212
1313Just grant some critical permissions on your Zebra device in one method call (see at the end of this document).
1414
15- Includes: ACCESS_NOTIFICATIONS, PACKAGE_USAGE_STATS, SYSTEM_ALERT_WINDOW, BATTERY_STATS, MANAGE_EXTERNAL_STORAGE, GET_APP_OPS_STATS, ALL_DANGEROUS_PERMISSIONS
15+ Includes: ACCESS_NOTIFICATIONS, PACKAGE_USAGE_STATS, SYSTEM_ALERT_WINDOW, BATTERY_STATS, MANAGE_EXTERNAL_STORAGE, GET_APP_OPS_STATS, ALL_DANGEROUS_PERMISSIONS, WRITE_SETTINGS, ACCESSIBILITY_SERVICE
1616
1717Have fun with Zebra's devices :)
1818
@@ -48,6 +48,19 @@ Controls management of USB and/or SD card storage media attached to the device.
4848Grants all permissions that requires runtime permission model
4949To know which permissions are listed as Dangerous, execute the following ADB command:
5050adb shell pm list permissions -g -d
51+
52+ #8. Access RX Logger
53+ Controls access to Zebra RxLogger diagnostics utility usage on the device.
54+
55+ #9. Schedule Exact Alarm
56+ Allows a user-facing app use Android exact alarm APIs to trigger an alarm at an exact time in the future, such as for an alarm clock or calendar app.
57+
58+ #10. Write Settings
59+ Allows an app to write (or read) Android system settings.
60+
61+ #11. Accessibility Service
62+ Controls permission for an app to interact with the device UI, for example to act on behalf of a disabled user.
63+
5164```
5265
5366This wrapper will use the EMDK with MX's AccessMgr feature to grant, deny or verify (WIP) critical permissions.
@@ -192,6 +205,10 @@ EPermissionType.GET_APP_OPS_STATS
192205EPermissionType . BATTERY_STATS
193206EPermissionType . MANAGE_EXTERNAL_STORAGE
194207EPermissionType . ALL_DANGEROUS_PERMISSIONS
208+ EPermissionType . ACCESS_RX_LOGGER
209+ EPermissionType . SCHEDULE_EXACT_ALARM
210+ EPermissionType . WRITE_SETTINGS
211+ EPermissionType . ACCESSIBILITY_SERVICE
195212```
196213
197214Snippet code to grant a permission:
0 commit comments