Path: blob/master/platform/android/java/editor/src/picoos/AndroidManifest.xml
20959 views
<manifest xmlns:android="http://schemas.android.com/apk/res/android"1xmlns:tools="http://schemas.android.com/tools">23<uses-feature4android:name="android.hardware.vr.headtracking"5android:required="true"6android:version="1"/>78<uses-permission9android:name="com.pvr.tobactivate.permission.AUTH_CHECK" />1011<uses-permission12android:name="com.picovr.permission.HAND_TRACKING" />1314<application>1516<activity17android:name=".GodotEditor"18android:exported="false"19android:screenOrientation="landscape"20tools:node="merge"21tools:replace="android:screenOrientation"/>2223<activity24android:name=".GodotXRGame"25android:exported="false"26tools:node="merge">27<intent-filter>28<action android:name="android.intent.action.MAIN" />29<category android:name="android.intent.category.DEFAULT" />30<category android:name="org.khronos.openxr.intent.category.IMMERSIVE_HMD" />31</intent-filter>32</activity>3334<!-- Enable system splash screen. Passthrough splash screen is not supported yet-->35<meta-data36android:name="pvr.app.splash"37android:value="0" />3839<!-- Enable passthrough-->40<meta-data41android:name="enable_vst"42android:value="1" />4344<!-- PICO hand tracking -->45<meta-data46android:name="handtracking"47android:value="1" />4849<!-- Run as a 2D window app.-->50<meta-data51android:name="pvr.app.type"52android:value="2d"53tools:replace="android:value"/>5455</application>5657</manifest>585960