-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
31 lines (27 loc) · 961 Bytes
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="newpson.ajournal">
<uses-sdk android:minSdkVersion="12" />
<uses-sdk android:targetSdkVersion="28" />
<uses-permission android:name="android.permission.USB_PERMISSION" />
<uses-feature android:name="android.hardware.usb.host" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<application
android:label="@string/app_name"
android:theme="@style/Default">
<activity
android:name=".MainActivity"
android:label="@string/app_name">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>
<meta-data
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/devices" />
</activity>
</application>
</manifest>