Path: blob/master/platform/android/java/editor/src/picoos/AndroidManifest.xml
10286 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="true"19android:screenOrientation="landscape"20tools:node="merge"21tools:replace="android:screenOrientation">22<intent-filter>23<action android:name="android.intent.action.MAIN" />24<category android:name="android.intent.category.DEFAULT" />25<category android:name="android.intent.category.LAUNCHER" />26</intent-filter>27</activity>2829<activity30android:name=".GodotXRGame"31android:exported="false"32tools:node="merge">33<intent-filter>34<action android:name="android.intent.action.MAIN" />35<category android:name="android.intent.category.DEFAULT" />36<category android:name="org.khronos.openxr.intent.category.IMMERSIVE_HMD" />37</intent-filter>38</activity>3940<!-- Enable system splash screen. Passthrough splash screen is not supported yet-->41<meta-data42android:name="pvr.app.splash"43android:value="0" />4445<!-- Enable passthrough-->46<meta-data47android:name="enable_vst"48android:value="1" />4950<!-- PICO hand tracking -->51<meta-data52android:name="handtracking"53android:value="1" />5455<!-- Run as a 2D window app.-->56<meta-data57android:name="pvr.app.type"58android:value="2d"59tools:replace="android:value"/>6061</application>6263</manifest>646566