mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 01:58:19 +00:00
2b3ae2425d
Specify that Vulkan 1.1.0 is used if supported. Remove explicit requirement of OpenGL ES 3.0 as OpenGL ES 1.0 is also supported as fallback and the client should pick the highest supported version.
42 lines
1.6 KiB
XML
42 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<!-- Vulkan 1.1.0 is used if supported -->
|
|
<uses-feature
|
|
android:name="android.hardware.vulkan.version"
|
|
android:version="0x00401000" />
|
|
<!-- android:glEsVersion is not specified as OpenGL ES 1.0 is supported as fallback -->
|
|
<uses-feature
|
|
android:name="android.hardware.screen.landscape" />
|
|
|
|
<!-- 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"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen">
|
|
<activity
|
|
android:name="org.ddnet.client.NativeMain"
|
|
android:exported="true"
|
|
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
|
|
android:screenOrientation="landscape">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<meta-data
|
|
android:name="android.app.lib_name"
|
|
android:value="DDNet" />
|
|
</activity>
|
|
</application>
|
|
</manifest>
|