quivio-transaction-processor 1.22.0-beta → 1.22.1-beta
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,4 +1,25 @@
|
|
|
1
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2
|
+
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
+
xmlns:tools="http://schemas.android.com/tools">
|
|
3
4
|
|
|
5
|
+
<!-- optional: advertise USB host feature but don't force Play Store filtering -->
|
|
6
|
+
<uses-feature android:name="android.hardware.usb.host" android:required="false" />
|
|
7
|
+
|
|
8
|
+
<!-- any permissions your receiver/native code needs -->
|
|
9
|
+
<uses-permission android:name="android.permission.INTERNET" />
|
|
10
|
+
<uses-permission android:name="com.pax.permission.RECV_BOOT_COMPLETED" />
|
|
11
|
+
<uses-permission android:name="com.pax.permission.PAX_START_ACTIVITIES_FROM_BACKGROUND" />
|
|
12
|
+
|
|
13
|
+
<application>
|
|
14
|
+
<!-- BroadcastReceiver that listens for USB attach/detach -->
|
|
15
|
+
<receiver
|
|
16
|
+
android:name=".usb.UsbDeviceReceiver"
|
|
17
|
+
android:exported="true"
|
|
18
|
+
android:enabled="true">
|
|
19
|
+
<intent-filter>
|
|
20
|
+
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
|
21
|
+
<action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
|
|
22
|
+
</intent-filter>
|
|
23
|
+
</receiver>
|
|
24
|
+
</application>
|
|
4
25
|
</manifest>
|