Fix screen rotation loss of input bug

Gitlab: #460
Change-Id: I37dad0d5afc82778973c33a34aab90ddaae19428
Reviewed-by: Adrien Béraud <adrien.beraud@savoirfairelinux.com>
diff --git a/ring-android/app/src/main/AndroidManifest.xml b/ring-android/app/src/main/AndroidManifest.xml
index 5181658..2f2d10a 100644
--- a/ring-android/app/src/main/AndroidManifest.xml
+++ b/ring-android/app/src/main/AndroidManifest.xml
@@ -94,7 +94,7 @@
 
         <activity
             android:name=".launch.LaunchActivity"
-            android:configChanges="screenSize|screenLayout|smallestScreenSize"
+            android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
             android:label="@string/app_name"
             android:screenOrientation="fullUser"
             android:theme="@style/AppThemeBase">
@@ -108,7 +108,7 @@
 
         <activity
             android:name=".client.HomeActivity"
-            android:configChanges="screenSize|screenLayout|smallestScreenSize"
+            android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
             android:label="@string/app_name"
             android:launchMode="singleTask"
             android:screenOrientation="fullUser"
@@ -167,7 +167,7 @@
 
         <activity
             android:name=".account.AccountWizardActivity"
-            android:configChanges="screenSize|screenLayout|smallestScreenSize"
+            android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
             android:screenOrientation="fullUser"
             android:theme="@style/AppThemeBase" />
         <activity
@@ -260,7 +260,7 @@
         </activity>
         <activity
             android:name=".client.ConversationActivity"
-            android:configChanges="screenSize|screenLayout|smallestScreenSize"
+            android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
             android:label="@string/app_name"
             android:parentActivityName=".client.HomeActivity"
             android:screenOrientation="fullUser"
@@ -289,7 +289,7 @@
             android:theme="@style/Theme.Ring.Leanback.CustomTitle" />
         <activity
             android:name=".tv.account.TVAccountWizard"
-            android:configChanges="screenSize|screenLayout|smallestScreenSize"
+            android:configChanges="orientation|screenSize|screenLayout|smallestScreenSize"
             android:screenOrientation="fullUser"
             android:theme="@style/AppThemeBase" />