-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
45 lines (42 loc) · 1.63 KB
/
AndroidManifest.xml
File metadata and controls
45 lines (42 loc) · 1.63 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bytedance.pico.secure_mr_demo.mnistwild"
>
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera.any" />
<uses-feature
android:name="android.hardware.vr.headtracking"
android:required="true" />
<application
android:allowBackup="false"
android:hasCode="true"
android:label="MNIST Wild (Refactored)"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
<activity
android:name=".MnistWildActivity"
android:configChanges="screenSize|screenLayout|orientation|keyboardHidden|keyboard|navigation|uiMode"
android:excludeFromRecents="false"
android:exported="true"
android:launchMode="singleTask"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
<meta-data
android:name="android.app.lib_name"
android:value="mnistwild" />
<meta-data
android:name="com.oculus.vr.focusaware"
android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.oculus.intent.category.VR" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<meta-data android:name="pvr.app.secure_mr" android:value="1" />
<meta-data android:name="pvr.app.type" android:value="vr" />
<meta-data android:name="enable_mr_safeguard" android:value="1"/>
</application>
</manifest>