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"
|
2018-02-09 11:41:07 +07:00
|
|
|
package="io.anuke.mindustry">
|
2017-06-29 11:54:10 +07:00
|
|
|
|
2018-01-25 04:48:07 +07:00
|
|
|
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
|
2017-12-12 11:48:37 +07:00
|
|
|
<uses-permission android:name="com.android.vending.BILLING" />
|
2017-12-20 06:01:16 +07:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
2017-12-30 23:43:47 +07:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2017-12-20 12:17:01 +07:00
|
|
|
|
2017-06-29 11:54:10 +07:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2017-12-20 10:10:10 +07:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
2017-12-20 12:04:49 +07:00
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
2017-06-29 11:54:10 +07:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/GdxTheme" >
|
|
|
|
<activity
|
|
|
|
android:name="io.anuke.mindustry.AndroidLauncher"
|
2018-02-27 10:05:07 +07:00
|
|
|
android:label="@string/app_name"
|
2017-11-14 09:26:01 +07:00
|
|
|
android:screenOrientation="sensorLandscape"
|
2017-06-29 11:54:10 +07:00
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2017-12-12 11:48:37 +07:00
|
|
|
|
2017-12-12 13:38:24 +07:00
|
|
|
<activity android:name=".DonationsActivity"
|
|
|
|
android:theme="@style/GdxTheme" />
|
2017-12-12 11:48:37 +07:00
|
|
|
|
2017-06-29 11:54:10 +07:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|