2022-10-11 14:15:50 +02:00
|
|
|
<!-- This XML snippet is injected directly into the AndroidManifest.xml -->
|
2022-09-17 16:00:55 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2022-11-22 14:25:21 +01:00
|
|
|
<!-- This intent filter allows Sideband to handle clickable LXM links -->
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="lxm"/>
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
<!-- This intent filter allows opening scanned LXM URLs directly in Sideband -->
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.WEB_SEARCH" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
|
|
|
|
|
2022-09-17 16:00:55 +02:00
|
|
|
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
|
|
|
|
android:resource="@xml/device_filter" />
|