android: add forgotten permission, application options, bump version, rename ic_launcher_round to ic_launcher to make Android 7.x happy
This commit is contained in:
parent
a8f3701e92
commit
7674964cc8
3 changed files with 11 additions and 7 deletions
|
@ -4,16 +4,19 @@
|
|||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="su.xash.engine"
|
||||
android:versionCode="1705"
|
||||
android:versionName="0.20"
|
||||
android:versionCode="1710"
|
||||
android:versionName="0.20.1"
|
||||
android:installLocation="auto">
|
||||
|
||||
<application android:label="@string/app_name"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:allowBackup="true"
|
||||
android:roundIcon="@mipmap/ic_launcher"
|
||||
android:allowBackup="false"
|
||||
android:fullBackupOnly="false"
|
||||
android:debuggable="false"
|
||||
android:hardwareAccelerated="true">
|
||||
android:hardwareAccelerated="true"
|
||||
android:supportsRtl="false"
|
||||
android:usesCleartextTraffic="true">
|
||||
|
||||
<activity android:name="su.xash.engine.LauncherActivity"
|
||||
android:label="@string/launcher_name"
|
||||
|
@ -66,7 +69,7 @@
|
|||
</intent-filter>
|
||||
</receiver>
|
||||
<!--<service android:name="su.xash.engine.SteamService" />-->
|
||||
<meta-data android:name="android.max_aspect" android:value="2.1" />
|
||||
<meta-data android:name="android.max_aspect" android:value="10000" />
|
||||
</application>
|
||||
|
||||
<!-- Some devices with Android 2.2 should support native activity, it was in unstable hidden API -->
|
||||
|
@ -80,5 +83,6 @@
|
|||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.VIBRATE" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
||||
</manifest>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
<string name="app_name" translatable="false">Xash3D FWGS</string>
|
||||
<string name="launcher_name" translatable="false">Xash3D FWGS</string>
|
||||
<string name="launcher_name_test" translatable="false">Xash3D FWGS Test</string>
|
||||
<string name="version_string" translatable="false">v0.19.3</string>
|
||||
<string name="version_string" translatable="false">v0.20.1</string>
|
||||
|
||||
<!-- Generic -->
|
||||
<string name="cancel">Cancel</string>
|
||||
|
|
Loading…
Add table
Reference in a new issue