Mindustry/android/AndroidManifest.xml

43 lines
1.9 KiB
XML
Raw Normal View History

2017-06-29 11:54:10 +07:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2019-04-08 20:03:18 +07:00
package="io.anuke.mindustry">
2017-06-29 11:54:10 +07:00
2019-04-08 20:03:18 +07:00
<uses-feature android:glEsVersion="0x00020000" android:required="true"/>
<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-06-29 11:54:10 +07:00
<application
android:resizeableActivity="false"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:isGame="true"
android:appCategory="game"
android:label="@string/app_name"
android:theme="@style/GdxTheme" 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-04-08 20:03:18 +07:00
android:name="io.anuke.mindustry.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="user"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout">
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>
<intent-filter>
<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"/>
</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>