2017-01-27 22:43:49 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-04-10 00:22:09 +02:00
|
|
|
package="org.supertuxkart.stk_dbg"
|
2017-01-27 22:43:49 +01:00
|
|
|
android:versionCode="1"
|
2018-04-19 00:25:22 +02:00
|
|
|
android:versionName="git"
|
2017-11-08 22:06:58 +01:00
|
|
|
android:installLocation="auto">
|
2017-01-27 22:43:49 +01:00
|
|
|
|
2017-03-05 22:02:50 +01:00
|
|
|
<application android:label="@string/app_name"
|
2017-01-27 22:43:49 +01:00
|
|
|
android:icon="@drawable/icon"
|
2018-02-05 22:11:09 +01:00
|
|
|
android:banner="@drawable/banner"
|
2019-05-18 09:15:58 +08:00
|
|
|
android:hasCode="true"
|
2018-02-06 22:35:10 +01:00
|
|
|
android:isGame="true"
|
2020-08-27 12:52:58 +08:00
|
|
|
android:theme="@style/Theme.STKSplashScreen"
|
2018-04-05 22:16:08 +02:00
|
|
|
android:hardwareAccelerated="true"
|
2020-07-12 10:15:21 +08:00
|
|
|
android:resizeableActivity="true">
|
2017-01-27 22:43:49 +01:00
|
|
|
|
2019-05-18 09:15:58 +08:00
|
|
|
<activity android:name=".SuperTuxKartActivity"
|
2017-01-27 22:43:49 +01:00
|
|
|
android:label="@string/app_name"
|
2018-12-09 22:50:20 +01:00
|
|
|
android:launchMode="singleTask"
|
2020-12-04 10:04:44 +08:00
|
|
|
android:configChanges="fontScale|keyboard|keyboardHidden|locale|mcc|mnc|navigation|orientation|screenLayout|screenSize|uiMode"
|
2017-01-27 22:43:49 +01:00
|
|
|
android:screenOrientation="sensorLandscape">
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2018-02-05 22:11:09 +01:00
|
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
2017-01-27 22:43:49 +01:00
|
|
|
</intent-filter>
|
2021-10-04 20:16:05 +08:00
|
|
|
<!-- 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 22:43:49 +01:00
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
|
|
<uses-feature android:glEsVersion="0x00020000" />
|
2018-02-05 22:11:09 +01:00
|
|
|
<uses-feature android:name="android.software.leanback" android:required="false" />
|
2019-05-19 17:41:51 +08:00
|
|
|
<uses-feature android:name="android.software.input_methods" android:required="false" />
|
2021-10-04 20:16:05 +08:00
|
|
|
|
|
|
|
<!-- 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 22:43:49 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2021-10-04 20:16:05 +08:00
|
|
|
|
|
|
|
<!-- Allow writing to external storage -->
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<!-- Allow access to Bluetooth devices -->
|
2020-04-21 15:28:02 +08:00
|
|
|
<uses-permission android:name="android.permission.BLUETOOTH" />
|
2021-10-04 20:16:05 +08:00
|
|
|
<!-- Allow access to the vibrator -->
|
2020-04-21 15:28:02 +08:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2017-01-27 22:43:49 +01:00
|
|
|
</manifest>
|