aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel@gultsch.de>2016-08-26 16:05:38 +0200
committerDaniel Gultsch <daniel@gultsch.de>2016-08-26 16:05:38 +0200
commit76cbb4f72751ec6255aa40b72218db80ea6d9472 (patch)
tree092f9bd00495e0c610682f90a2c3a56ff388a920 /src/main/AndroidManifest.xml
parente33d8451a899bd014ef5b142289c3c1c35c989bd (diff)
some multi-window optimizations. set min width to 300
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r--src/main/AndroidManifest.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index abc4b89d..606b6daa 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -40,6 +40,8 @@
android:name=".ui.ConversationActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
+ android:minWidth="300dp"
+ android:minHeight="300dp"
android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -91,13 +93,11 @@
<activity
android:name=".ui.WelcomeActivity"
android:label="@string/app_name"
- android:launchMode="singleTask"
- android:screenOrientation="portrait" />
+ android:launchMode="singleTask"/>
<activity
android:name=".ui.MagicCreateActivity"
android:label="@string/create_account"
- android:launchMode="singleTask"
- android:screenOrientation="portrait" />
+ android:launchMode="singleTask"/>
<activity
android:name=".ui.SetPresenceActivity"
android:configChanges="orientation|screenSize"