17 lines
1008 B
XML
17 lines
1008 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="aaa.QuestAppLauncher.App">
|
|
<application android:icon="@drawable/app_icon" android:label="@string/app_name">
|
|
<activity android:name="aaa.QuestAppLauncher.App.AppInfo"
|
|
android:label="@string/app_name"
|
|
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-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
<uses-feature android:name="android.hardware.vr.headtracking" android:required="false" android:version="1" />
|
|
<uses-permission android:name="android.permission.PACKAGE_USAGE_STATS" />
|
|
</manifest>
|