pm-react-native-datawedge-intents
Version:
React Native Android module to interface with Zebra's DataWedge using Android Intents to control the barcode scanner and retrieve scanned data
15 lines (13 loc) • 548 B
text/xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="com.symbol.datawedge.api.PERMISSION" />
<application>
<receiver
android:name=".RNDataWedgeIntentsModule$genericReceiver"
android:exported="true">
<intent-filter>
<action android:name="com.symbol.datawedge.api.RESULT_ACTION"/>
<action android:name="com.koobin.koobinaccess.ACTION"/>
</intent-filter>
</receiver>
</application>
</manifest>