stk-code_catmod/android/AndroidManifest.xml

68 lines
2.8 KiB
XML
Raw Normal View History

2017-01-27 16:43:49 -05:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2017-11-08 16:06:58 -05:00
android:installLocation="auto">
2017-01-27 16:43:49 -05:00
2017-03-05 16:02:50 -05:00
<application android:label="@string/app_name"
2017-01-27 16:43:49 -05:00
android:icon="@drawable/icon"
android:banner="@drawable/banner"
android:hasCode="true"
2018-02-06 16:35:10 -05:00
android:isGame="true"
android:theme="@style/Theme.STKSplashScreen"
2018-04-05 16:16:08 -04:00
android:hardwareAccelerated="true"
2020-07-11 22:15:21 -04:00
android:resizeableActivity="true">
2017-01-27 16:43:49 -05:00
<activity android:name=".SuperTuxKartActivity"
2017-01-27 16:43:49 -05:00
android:label="@string/app_name"
android:launchMode="singleTask"
2020-12-03 21:04:44 -05:00
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|uiMode"
2022-11-10 21:21:47 -05:00
android:screenOrientation="sensorLandscape"
android:exported="true">
2017-01-27 16:43:49 -05:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
2017-01-27 16:43:49 -05:00
</intent-filter>
<!-- Let Android know that we can handle some USB devices and should receive this event -->
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>
2017-01-27 16:43:49 -05:00
</activity>
</application>
<uses-feature android:glEsVersion="0x00020000" />
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.software.input_methods" android:required="false" />
<!-- Touchscreen support -->
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<!-- Game controller support -->
<uses-feature
android:name="android.hardware.bluetooth"
android:required="false" />
<uses-feature
android:name="android.hardware.gamepad"
android:required="false" />
<uses-feature
android:name="android.hardware.usb.host"
android:required="false" />
<!-- External mouse input events -->
<uses-feature
android:name="android.hardware.type.pc"
android:required="false" />
2017-01-27 16:43:49 -05:00
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- Allow writing to external storage -->
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Allow access to Bluetooth devices -->
2020-04-21 03:28:02 -04:00
<uses-permission android:name="android.permission.BLUETOOTH" />
<!-- Allow access to the vibrator -->
2020-04-21 03:28:02 -04:00
<uses-permission android:name="android.permission.VIBRATE" />
2017-01-27 16:43:49 -05:00
</manifest>