2022-07-31 15:27:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-08-16 17:39:54 +02:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2022-07-31 15:27:15 +02:00
|
|
|
|
2022-08-16 17:39:54 +02:00
|
|
|
<uses-feature android:glEsVersion="0x00030001" />
|
2022-07-31 15:27:15 +02:00
|
|
|
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" />
|
2023-06-17 21:55:47 +02:00
|
|
|
<uses-feature android:name="com.oculus.feature.PASSTHROUGH" android:required="false" />
|
2022-07-31 15:27:15 +02:00
|
|
|
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="true"
|
2023-03-08 22:13:55 +01:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2022-07-31 15:27:15 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:logo="@drawable/ic_banner"
|
|
|
|
|
android:isGame="true"
|
|
|
|
|
android:banner="@drawable/tv_banner"
|
|
|
|
|
android:requestLegacyExternalStorage="true"
|
|
|
|
|
android:preserveLegacyExternalStorage="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"/>
|
2023-02-08 17:26:36 +01:00
|
|
|
<meta-data android:name="pvr.app.type" android:value="vr" />
|
2022-07-31 15:27:15 +02:00
|
|
|
</application>
|
|
|
|
|
</manifest>
|