2021-08-24 10:18:20 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-05-08 10:44:53 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2024-07-27 10:05:04 +00:00
|
|
|
<!-- Vulkan 1.1.0 is used if supported -->
|
2021-08-24 10:18:20 +00:00
|
|
|
<uses-feature
|
2024-07-27 10:05:04 +00:00
|
|
|
android:name="android.hardware.vulkan.version"
|
2024-07-28 17:38:13 +00:00
|
|
|
android:required="false"
|
2024-07-27 10:05:04 +00:00
|
|
|
android:version="0x00401000" />
|
|
|
|
<!-- android:glEsVersion is not specified as OpenGL ES 1.0 is supported as fallback -->
|
2024-05-19 10:58:33 +00:00
|
|
|
<uses-feature
|
2024-07-28 17:38:13 +00:00
|
|
|
android:name="android.hardware.screen.landscape"
|
|
|
|
android:required="true" />
|
2021-08-24 10:18:20 +00:00
|
|
|
|
|
|
|
<!-- Teeworlds does broadcasts over local networks -->
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
|
|
<!-- usesCleartextTraffic because unencrypted UDP packets -->
|
|
|
|
<application
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:hasCode="true"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:isGame="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2024-05-19 10:58:33 +00:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
2021-08-24 10:18:20 +00:00
|
|
|
<activity
|
2024-05-09 09:52:37 +00:00
|
|
|
android:name="org.ddnet.client.NativeMain"
|
2024-05-08 10:44:53 +00:00
|
|
|
android:exported="true"
|
2024-05-19 10:58:33 +00:00
|
|
|
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
|
|
|
android:screenOrientation="landscape">
|
2021-08-24 10:18:20 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2024-05-08 10:44:53 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.lib_name"
|
2021-08-24 10:18:20 +00:00
|
|
|
android:value="DDNet" />
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|