mirror of
https://github.com/spiffcode/hostile-takeover.git
synced 2026-03-26 06:58:28 -06:00
44 lines
1.8 KiB
XML
44 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest package="com.spiffcode.ht"
|
|
android:versionCode="1"
|
|
android:versionName="1.63"
|
|
android:installLocation="auto" xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19" />
|
|
|
|
<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" />
|
|
|
|
<supports-screens android:resizeable="true"
|
|
android:smallScreens="true"
|
|
android:normalScreens="true"
|
|
android:largeScreens="true"
|
|
android:xlargeScreens="true"
|
|
android:anyDensity="true"
|
|
android:requiresSmallestWidthDp="320"/>
|
|
|
|
<application android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:allowBackup="true"
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
android:isGame="true"
|
|
android:multiArch="false"
|
|
android:hardwareAccelerated="true"
|
|
android:allowClearUserData="true">
|
|
<activity android:name="GameActivity"
|
|
android:screenOrientation="sensorLandscape"
|
|
android:windowSoftInputMode="adjustResize"
|
|
android:configChanges="keyboardHidden|orientation|screenSize">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|