Skip to content

Commit

Permalink
Fix webview restart on keyboard changes (#2622) (#2624)
Browse files Browse the repository at this point in the history
* The webview activities now handle keyboard|keyboardHidden|navigation
  configuration changes by keyboard connection changes, to avoid the
  activity restart which leads to frontend reload.
  • Loading branch information
changwoo committed Jun 21, 2022
1 parent 58b69b8 commit f3f00e3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@

<activity
android:name=".onboarding.OnboardingActivity"
android:configChanges="orientation|screenSize|keyboardHidden" />
android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation" />

<activity
android:name=".settings.wear.SettingsWearActivity"
Expand Down Expand Up @@ -315,7 +315,7 @@
android:supportsPictureInPicture="true"
android:resizeableActivity="true"
android:exported="false"
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout" />
android:configChanges="orientation|screenSize|smallestScreenSize|screenLayout|keyboard|keyboardHidden|navigation" />

<activity
android:name=".settings.SettingsActivity"
Expand Down

0 comments on commit f3f00e3

Please sign in to comment.