You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.3 KiB
XML
60 lines
2.3 KiB
XML
2 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="com.example.myapplication">
|
||
|
|
||
|
<uses-feature
|
||
|
android:name="android.hardware.usb.host"
|
||
|
android:required="true" />
|
||
|
|
||
|
<uses-permission android:name="android.permission.INTERNET" />
|
||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||
|
<uses-permission android:name="android.permission.CAMERA" />
|
||
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
||
|
|
||
|
<uses-feature
|
||
|
android:glEsVersion="0x00020000"
|
||
|
android:required="true" />
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@mipmap/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||
|
android:supportsRtl="true"
|
||
|
android:theme="@style/AppTheme">
|
||
|
<activity
|
||
|
android:name=".MainActivity"
|
||
|
android:exported="true"
|
||
|
android:launchMode="singleInstance">
|
||
|
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.MAIN" />
|
||
|
|
||
|
<category android:name="android.intent.category.LAUNCHER" />
|
||
|
</intent-filter>
|
||
|
</activity>
|
||
|
<activity
|
||
|
android:name=".UVCActivity"
|
||
|
android:exported="false"
|
||
|
android:launchMode="singleInstance">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
|
||
|
</intent-filter>
|
||
|
<intent-filter>
|
||
|
<action android:name="android.hardware.usb.action.USB_DEVICE_DETACHED" />
|
||
|
</intent-filter>
|
||
|
|
||
|
<meta-data
|
||
|
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
|
||
|
android:resource="@xml/device_filter" />
|
||
|
</activity>
|
||
2 years ago
|
|
||
|
<activity
|
||
|
android:name=".player.ProVideoActivity"
|
||
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
||
|
android:exported="false"
|
||
|
android:theme="@style/FullscreenTheme" />
|
||
2 years ago
|
</application>
|
||
|
</manifest>
|