v0.7.2c: removed unnecessary manifest elements

This commit is contained in:
Evan Debenham 2019-04-23 01:58:09 -04:00
parent 96878b1095
commit 842253f643

View File

@ -20,14 +20,13 @@
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:resizeableActivity="true"
android:allowBackup="true"
android:fullBackupOnly="true"
android:backupAgent="com.shatteredpixel.shatteredpixeldungeon.BackupHandler">
<activity
android:label="@string/app_name"
android:name="com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon"
android:alwaysRetainTaskState="true"
android:launchMode="singleInstance"
android:screenOrientation="nosensor">
<intent-filter >
<action android:name="android.intent.action.MAIN" />
@ -35,8 +34,6 @@
</intent-filter>
</activity>
<!-- Workaround for a bug on Galaxy S8: max aspect must be specified or it defaults to 1.86-->
<meta-data android:name="android.max_aspect" android:value="10.0" />
</application>
</manifest>