The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

st/oxr_android: Clean up manifest

+5 -3
+5 -3
src/xrt/targets/openxr_android/src/main/AndroidManifest.xml
··· 1 + <?xml version="1.0" encoding="utf-8"?> 1 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 2 3 package="org.freedesktop.monado.openxr_runtime"> 3 4 <!-- ··· 6 7 --> 7 8 8 9 <!-- We may try to use OpenGL|ES 3.0 --> 9 - <uses-feature android:glEsVersion="0x00030002" android:required="true" /> 10 + <uses-feature 11 + android:glEsVersion="0x00030002" 12 + android:required="true" /> 10 13 11 14 <!-- This is for Android's VR mode. --> 12 15 <uses-feature ··· 31 34 android:label="@string/app_name" 32 35 android:supportsRtl="true" 33 36 android:theme="@style/AppTheme"> 37 + <!-- Main "about" activity --> 34 38 <activity android:name=".MainActivity"> 35 39 <intent-filter> 36 40 <action android:name="android.intent.action.MAIN" /> 37 - 38 41 <category android:name="android.intent.category.LAUNCHER" /> 39 42 </intent-filter> 40 43 </activity> ··· 47 50 <meta-data 48 51 android:name="org.khronos.openxr.OpenXRRuntime" 49 52 android:value="libopenxr_monado.so" /> 50 - 51 53 <intent-filter> 52 54 <action android:name="android.service.vr.VrListenerService" /> 53 55 </intent-filter>