2017-06-29 11:54:10 +07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-07-07 04:14:10 +07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
2017-06-29 11:54:10 +07:00
|
|
|
|
2019-04-08 20:03:18 +07:00
|
|
|
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
|
2020-02-27 22:07:52 +07:00
|
|
|
<uses-feature android:name="android.hardware.type.pc" android:required="false" />
|
2019-04-08 20:03:18 +07:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2017-12-20 12:17:01 +07:00
|
|
|
|
2017-06-29 11:54:10 +07:00
|
|
|
<application
|
2021-12-06 12:52:30 +07:00
|
|
|
android:resizeableActivity="true"
|
2018-07-02 22:04:24 +07:00
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:isGame="true"
|
2021-07-11 21:13:34 +07:00
|
|
|
android:theme="@style/ArcTheme"
|
2019-10-30 02:57:25 +07:00
|
|
|
android:usesCleartextTraffic="true"
|
2018-07-02 22:04:24 +07:00
|
|
|
android:appCategory="game"
|
|
|
|
android:label="@string/app_name"
|
2021-06-02 22:08:08 +07:00
|
|
|
android:fullBackupContent="@xml/backup_rules">
|
2019-04-08 20:03:18 +07:00
|
|
|
<meta-data android:name="android.max_aspect" android:value="2.1"/>
|
2017-06-29 11:54:10 +07:00
|
|
|
<activity
|
2019-12-26 00:06:19 +07:00
|
|
|
android:name="mindustry.android.AndroidLauncher"
|
2019-04-08 20:03:18 +07:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:screenOrientation="user"
|
2022-06-06 22:31:38 +07:00
|
|
|
android:exported="true"
|
2019-04-08 20:03:18 +07:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout">
|
2018-06-01 23:20:16 +07:00
|
|
|
|
2017-06-29 11:54:10 +07:00
|
|
|
<intent-filter>
|
2019-04-08 20:03:18 +07:00
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
2017-06-29 11:54:10 +07:00
|
|
|
</intent-filter>
|
2018-06-01 07:27:13 +07:00
|
|
|
|
|
|
|
<intent-filter>
|
2018-06-01 23:20:16 +07:00
|
|
|
<action android:name="android.intent.action.VIEW"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
<category android:name="android.intent.category.BROWSABLE"/>
|
2019-09-07 09:09:54 +07:00
|
|
|
<data android:mimeType="application/octet-stream" />
|
2019-04-08 20:03:18 +07:00
|
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.msav"/>
|
2018-07-02 22:04:24 +07:00
|
|
|
</intent-filter>
|
2017-06-29 11:54:10 +07:00
|
|
|
</activity>
|
2017-12-12 11:48:37 +07:00
|
|
|
|
2017-06-29 11:54:10 +07:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|