-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
54 lines (46 loc) · 3.05 KB
/
AndroidManifest.xml
File metadata and controls
54 lines (46 loc) · 3.05 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
46
47
48
49
50
51
52
53
54
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.stfsc.engine"
android:versionCode="4"
android:versionName="0.1.0">
<uses-sdk android:minSdkVersion="29" android:targetSdkVersion="33" />
<uses-feature android:name="android.hardware.vr.headtracking" android:required="true" android:version="1" />
<uses-feature android:name="android.hardware.vr.high_performance" android:required="true" />
<uses-feature android:name="android.software.vr.mode" android:required="true" />
<uses-feature android:name="com.oculus.feature.HAND_TRACKING" android:required="true" />
<uses-feature android:name="com.oculus.software.hand_tracking" android:required="true" />
<uses-feature android:name="com.oculus.feature.PASSTHROUGH" android:required="true" />
<uses-permission android:name="com.oculus.permission.HAND_TRACKING" />
<uses-permission android:name="horizonos.permission.HAND_TRACKING" />
<uses-permission android:name="com.oculus.permission.USE_ANCHOR_API" />
<uses-permission android:name="com.oculus.permission.USE_SCENE" />
<uses-permission android:name="com.oculus.permission.BOUNDARY_VISIBILITY" />
<uses-permission android:name="com.oculus.permission.HEAD_TRACKING" />
<uses-permission android:name="horizonos.permission.HEAD_TRACKING" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:debuggable="false"
android:hasCode="false"
android:label="STFSC Engine"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
<meta-data android:name="com.oculus.supportedDevices" android:value="quest2|questpro|quest3|quest3s" />
<activity android:name="android.app.NativeActivity"
android:label="STFSC Engine"
android:launchMode="singleTask"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
android:configChanges="orientation|screenSize|screenLayout|keyboard|keyboardHidden|navigation|density|uiMode"
android:excludeFromRecents="true"
android:exported="true"
android:resizeableActivity="false">
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only" />
<meta-data android:name="com.oculus.vr.mode" android:value="vr_only" />
<meta-data android:name="android.app.lib_name" android:value="stfsc_engine" />
<meta-data android:name="com.oculus.vr.focusaware" android:value="true" />
<!-- CRITICAL: This is the correct filter for OpenXR immersive apps -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="org.khronos.openxr.intent.category.IMMERSIVE_HMD" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>