Merge "Do not stop audio recording when the device orienttion changes"
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 841203d..02fc212 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -26,9 +26,10 @@
     <application android:label="@string/app_name"
                  android:icon="@drawable/ic_launcher_soundrecorder">
         <activity android:name="SoundRecorder"
-            android:configChanges="orientation|keyboardHidden"
-            android:theme="@style/Theme.SoundRecorder"
-            >
+                android:configChanges="orientation|screenSize|keyboardHidden"
+                android:screenOrientation="unspecified"
+                android:clearTaskOnLaunch="true"
+                android:theme="@style/Theme.SoundRecorder">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
             </intent-filter>