<?xml version="1.0" encoding="utf-8"?>
<!--
  This manifest is merged into the host app's AndroidManifest.xml by the
  Android Gradle build system. It declares only the USB host feature.

  The USB_PERMISSION receiver and USB_DEVICE_ATTACHED intent-filter are injected
  into the *host app's* main activity by the Expo Config Plugin (plugin-src/withUsbSerial.ts),
  since they must be placed on the app's own activity, not on a library manifest.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="expo.modules.usbserial">

    <!--
      Declare USB host support. android:required="false" allows the app to be
      installed on devices without USB host — the module will simply return
      an empty device list on those devices.
    -->
    <uses-feature
        android:name="android.hardware.usb.host"
        android:required="false" />

</manifest>
