Skip to content

Commit

Permalink
Fix manifest - configChanges attribute was set in the wrong place
Browse files Browse the repository at this point in the history
  • Loading branch information
itkach committed Nov 9, 2014
1 parent 3646ebe commit 9ccb3c2
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,13 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize"
android:allowBackup="true"
android:name="itkach.aard2.Application"
android:icon="@drawable/aard2"
android:theme="@android:style/Theme.Holo.Light.DarkActionBar">

<activity android:name=".MainActivity"
android:label="@string/app_name"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:windowSoftInputMode="stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -25,7 +24,7 @@

<activity
android:name=".ArticleCollectionActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|smallestScreenSize|screenLayout"
android:excludeFromRecents="true">
<intent-filter>
<action android:name="aard2.lookup" />
Expand Down

0 comments on commit 9ccb3c2

Please sign in to comment.