Open
Description
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);
Metadata
Metadata
Assignees
Labels
No labels