aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohamed Zenadi <mohamed@zenadi.com>2015-07-19 13:51:24 +0200
committerMohamed Zenadi <mohamed@zenadi.com>2015-07-19 13:51:24 +0200
commit38c57cec6d9e46bcb897b85e15cf6852fa40f6c7 (patch)
tree8eab8261cec061d64e95f49fbb1342f009125a95
parent7517c650752b89acbfec691265ffda22f325783a (diff)
handle rotation in password list and password decrypt
-rw-r--r--app/src/main/AndroidManifest.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 8deb8826..2849695f 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -6,7 +6,8 @@
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application android:allowBackup="true" android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:theme="@style/AppTheme">
- <activity android:name=".PasswordStore" android:label="@string/app_name">
+ <activity android:name=".PasswordStore" android:label="@string/app_name"
+ android:configChanges="orientation|screenSize">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@@ -27,7 +28,8 @@
</activity>
<activity android:name=".crypto.PgpHandler"
- android:parentActivityName=".PasswordStore">
+ android:parentActivityName=".PasswordStore"
+ android:configChanges="orientation|screenSize">
<meta-data android:name="android.support.PARENT_ACTIVITY"
android:value="com.zeapo.pwdstore.PasswordStore" />