Unciv/android/AndroidManifest.xml
dic1911 36d5082fd7 allow reverse landscape (#1265)
by setting android:screenOrientation value to userLandscape
2019-10-31 15:46:16 +02:00

27 lines
918 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.unciv.app" >
<uses-sdk/>
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/uncivicon2"
android:label="@string/app_name"
android:theme="@style/GdxTheme" >
<activity
android:name="com.unciv.app.AndroidLauncher"
android:label="@string/app_name"
android:screenOrientation="userLandscape"
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>
</application>
</manifest>