@@ -14,12 +14,18 @@ Have fun with Zebra's devices :)
1414
1515## Change Log !!!
1616### 1. Change of REPOSITORY
17- ### 2. UPDATED FOR A11 ...
18- ### 3. Added a Sample repository running on <=A11
17+ ### 2. UPDATED FOR A13 ...
18+ ### 3. Added a Sample repository running on <=A13
1919
2020## Sample Repository
2121https://github.com/ltrudu/DeviceIdentifiersWrapper-Sample
2222
23+ ## V0.8 to V0.9 : Updated for A13
24+ ``` text
25+ Added BIND_NOTIFICATION_LISTENER_SERVICE permission
26+ Added com.symbol.emdk.emdkservice querie
27+ API updated to 33
28+ ```
2329## V0.4 to v0.8 : Basic cache mechanism & Wait for EMDK availability
2430``` text
2531 Added basic cache mechanism.
@@ -74,13 +80,15 @@ To use this helper on Zebra Android devices running Android 10 or higher, first
7480``` xml
7581<uses-permission android : name =" com.zebra.provider.READ" />
7682<uses-permission android : name =" com.symbol.emdk.permission.EMDK" />
83+ <uses-permission android : name =" android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
7784```
7885
7986Then add a query element to retrive the data (only necessary for Android builds >= 11)
8087
8188```xml
8289 <queries >
8390 <provider android : authorities =" oem_info" />
91+ <package android : name =" com.symbol.emdk.emdkservice" />
8492 </queries >
8593```
8694
@@ -97,10 +105,12 @@ Sample AdroidManifest.xml:
97105 <!-- > TODO: Add these permissions to your manifest </-->
98106 <uses-permission android : name =" com.zebra.provider.READ" />
99107 <uses-permission android : name =" com.symbol.emdk.permission.EMDK" />
108+ <uses-permission android : name =" android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
100109
101110 <!--> TODO: Add query element to your manifest </-- >
102111 <queries >
103112 <provider android : authorities =" oem_info" />
113+ <package android : name =" com.symbol.emdk.emdkservice" />
104114 </queries >
105115
106116 <application
0 commit comments