force portrait mode

This commit is contained in:
tibbi 2016-02-15 21:33:18 +01:00
parent 3afc9e53dd
commit 22f97b1c5f
1 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest package="draw.simplemobiletools.com" <manifest
xmlns:android="http://schemas.android.com/apk/res/android"> package="draw.simplemobiletools.com"
xmlns:android="http://schemas.android.com/apk/res/android">
<application <application
android:allowBackup="true" android:allowBackup="true"
@ -8,7 +9,9 @@
android:label="@string/app_name" android:label="@string/app_name"
android:supportsRtl="true" android:supportsRtl="true"
android:theme="@style/AppTheme"> android:theme="@style/AppTheme">
<activity android:name=".MainActivity"> <activity
android:name=".MainActivity"
android:screenOrientation="portrait">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN"/> <action android:name="android.intent.action.MAIN"/>
@ -16,5 +19,4 @@
</intent-filter> </intent-filter>
</activity> </activity>
</application> </application>
</manifest> </manifest>