1<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3    package="com.nordenlogic.android.usbserial.printer" >
4
5    <uses-sdk
6        android:minSdkVersion="17"
7        android:targetSdkVersion="30" />
8    <!-- mipmap/ic_launcher created with Android Studio -> New -> Image Asset using @color/colorPrimary and USB clip art -->
9    <application
9-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:6:5-31:19
10        android:appComponentFactory="androidx.core.app.CoreComponentFactory"
10-->[androidx.core:core:1.5.0] /Users/tim/.gradle/caches/8.9/transforms/15c7037d1d2995ab9c8961e1298ab9e0/transformed/core-1.5.0/AndroidManifest.xml:24:18-86
11        android:debuggable="true"
12        android:extractNativeLibs="true"
13        android:icon="@mipmap/ic_launcher"
13-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:7:9-43
14        android:label="@string/app_name"
14-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:8:9-41
15        android:testOnly="true"
16        android:theme="@style/AppTheme" >
16-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:9:9-40
17
18        <!--
19             for this simple app launchMode=singleTask and singleTop have same effect.
20             If you would start another activity in the app, e.g. Android Settings
21             then you should use singleTask, else a new MainActivity would be started
22             when the settings activity is currently shown
23        -->
24        <activity
24-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:15:9-30:20
25            android:name="com.nordenlogic.android.usbserial.printer.MainActivity"
25-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:16:13-41
26            android:label="@string/app_name"
26-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:17:13-45
27            android:launchMode="singleTask"
27-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:18:13-44
28            android:windowSoftInputMode="stateHidden|adjustResize" >
28-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:19:13-67
29            <intent-filter>
29-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:20:13-23:29
30                <action android:name="android.intent.action.MAIN" />
30-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:21:17-69
30-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:21:25-66
31
32                <category android:name="android.intent.category.LAUNCHER" />
32-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:22:17-77
32-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:22:27-74
33            </intent-filter>
34            <intent-filter>
34-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:24:13-26:29
35                <action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
35-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:25:17-90
35-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:25:25-87
36            </intent-filter>
37
38            <meta-data
38-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:27:13-29:57
39                android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
39-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:28:17-79
40                android:resource="@xml/device_filter" />
40-->/Users/tim/AndroidStudioProjects/usb-serial-for-android-master/usbSerialExamples/src/main/AndroidManifest.xml:29:17-54
41        </activity>
42    </application>
43
44</manifest>
