Files
QuestAppLauncher/Assets/Plugins/Android/AndroidManifest.xml
oxmc7769 cb8c3eb5df
Some checks failed
Build / Build launcher (push) Has been cancelled
Major update
2026-03-18 09:14:25 -07:00

17 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="dev.oxmc.QuestAppLauncher">
<application android:icon="@drawable/app_icon" android:label="@string/app_name">
<activity android:name="dev.oxmc.QuestAppLauncher.AppInfo"
android:label="@string/app_name"
android:exported="true"
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mnc|mcc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|uiMode|touchscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-feature android:name="android.hardware.vr.headtracking" android:required="false" android:version="1" />
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
</manifest>