mirror of
https://github.com/DrBeef/JKXR.git
synced 2025-02-22 03:41:12 +00:00
Added cvar g_saberAutoDeflect1stPerson so saber is only ever used to deflect lasers in first person Made selector always draw using HMD YAW so it remains in front when turning i.r.l Updated the hand model (@baggyg) Updated the crawler text with the patron credits Added @MuadDib's menu changes Aligned all weapons Scaled the saber hilt down a little bit Co-Authored-By: Grant Bagwell <general@grantbagwell.co.uk>
43 lines
1.8 KiB
XML
43 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.drbeef.jk2quest"
|
|
android:versionCode="16"
|
|
android:versionName="0.2.1" android:installLocation="auto" >
|
|
|
|
<!-- Tell the system this app requires OpenGL ES 3.1. -->
|
|
<uses-feature android:glEsVersion="0x00030001" android:required="true"/>
|
|
|
|
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1"
|
|
android:required="true" />
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<application android:allowBackup="false"
|
|
android:icon="@drawable/ic_jkquest"
|
|
android:label="@string/jkquest"
|
|
android:extractNativeLibs="true"
|
|
>
|
|
|
|
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
|
|
<meta-data android:name="com.oculus.supportedDevices" android:value="quest|quest2"/>
|
|
<meta-data android:name="com.oculus.ossplash" android:value="true"/>
|
|
|
|
<activity
|
|
android:name="com.drbeef.jkquest.GLES3JNIActivity"
|
|
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen"
|
|
android:launchMode="singleTask"
|
|
android:screenOrientation="landscape"
|
|
android:excludeFromRecents="false"
|
|
android:configChanges="screenSize|screenLayout|orientation|keyboardHidden|keyboard|navigation|uiMode">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|