Skip to content

Commit 3fa391f

Browse files
Losing filled data when screen rotate (commons-app#3973) (commons-app#3982)
Fixes commons-app#3973 * Add an attribute android:configChanges="screenSiz orientation|screenLayout" in auth.SignupActivity Manifes.xml
1 parent ebaf9bf commit 3fa391f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/src/main/AndroidManifest.xml

+2-1
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@
9494

9595
<activity
9696
android:name=".auth.SignupActivity"
97+
android:configChanges="orientation|screenLayout|screenSize"
9798
android:label="@string/title_activity_signup" />
9899

99100
<activity
@@ -182,7 +183,7 @@
182183
android:authorities="${applicationId}.categories.contentprovider"
183184
android:exported="false"
184185
android:label="@string/provider_categories"
185-
android:syncable="false" />
186+
android:syncable="false" />
186187

187188
<provider
188189
android:name=".explore.recentsearches.RecentSearchesContentProvider"

0 commit comments

Comments
 (0)