You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the screen reader configuration is changed while the app is paused the app will crash on resume. The cause is a bug in the reflection code used to call "reload" on the Web View. This throws a IllegalArgumentException.
In MobileAccessibility.onResume(boolean) line 147-148, It should be: Object aView = getView.invoke(webView); Method reload = aView.getClass().getMethod("reload"); reload.invoke(aView);
The text was updated successfully, but these errors were encountered:
When the screen reader configuration is changed while the app is paused the app will crash on resume. The cause is a bug in the reflection code used to call "reload" on the Web View. This throws a IllegalArgumentException.
In MobileAccessibility.onResume(boolean) line 147-148, It should be:
Object aView = getView.invoke(webView); Method reload = aView.getClass().getMethod("reload"); reload.invoke(aView);
The text was updated successfully, but these errors were encountered: