We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RequestInterceptor
RequestInterceptor.onInterceptUrlRequest is not called at all on Android API ≤ 23.
RequestInterceptor.onInterceptUrlRequest
After investigating a bit, I am pretty sure that the cause for this is that AccompanistWebViewClient only overrides shouldOverrideUrlLoading(WebView view, WebResourceRequest request) which was only added in API 24. So on API ≤ 23, it will never be called.
AccompanistWebViewClient
shouldOverrideUrlLoading(WebView view, WebResourceRequest request)
For API ≤ 23, shouldOverrideUrlLoading(WebView view, String url) must be overridden.
shouldOverrideUrlLoading(WebView view, String url)
This is also explained in this 2016 StackOverflow answer.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
RequestInterceptor.onInterceptUrlRequest
is not called at all on Android API ≤ 23.After investigating a bit, I am pretty sure that the cause for this is that
AccompanistWebViewClient
only overridesshouldOverrideUrlLoading(WebView view, WebResourceRequest request)
which was only added in API 24. So on API ≤ 23, it will never be called.For API ≤ 23,
shouldOverrideUrlLoading(WebView view, String url)
must be overridden.This is also explained in this 2016 StackOverflow answer.
The text was updated successfully, but these errors were encountered: