Skip to content

Commit

Permalink
added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ltrudu committed Sep 28, 2023
1 parent 545c730 commit e92cf99
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions DeviceIdentifiersWrapper/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,29 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.zebra.deviceidentifierswrapper">
<!-- TODO: Add these permissions and queries to your app -->
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="com.zebra.provider.READ"/>
<uses-permission android:name="android.permission.BIND_NOTIFICATION_LISTENER_SERVICE"
tools:ignore="ProtectedPermissions" />
<uses-permission android:name="com.symbol.emdk.permission.EMDK" />

<queries>
<package android:name="com.symbol.emdk.emdkservice" />
<provider android:authorities="oem_info" />
</queries>

<!--application
android:name = ".MainApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<uses-library android:name="com.symbol.emdk" />
TODO: Add uses-library to your application
....
</application-->

</manifest>

0 comments on commit e92cf99

Please sign in to comment.