WebView Providers

Since Android Lollipop, WebView has been an updateable system component, with the updateable part of the implementation distributed as an APK or App Bundle. We refer to this updateable package as the “WebView provider” on the device.

WebView provider options

Some OS images permit users to change their WebView provider to a non-default package while other images only support a single preinstalled default. This table captures the WebView provider options for the most common device configurations:

API levelHas GMS vs. AOSP?Allowed apps
L-MAOSPStandalone AOSP WebView (default, preinstalled)
L-MHas GMSStandalone Google WebView (default, preinstalled)
N-PAOSPStandalone AOSP WebView (default, preinstalled)
N-P (TV/car devices)Has GMSStandalone Google WebView (default, preinstalled)
N-P (other devices)Has GMSMonochrome Stable (default, preinstalled)
Monochrome Beta
Monochrome Dev
Monochrome Canary
Monochrome (no channel) (only userdebug/eng)
Google WebView Stub (preinstalled) or Standalone Google WebView (see Important notes for N-P)
>= QAOSPStandalone AOSP WebView (default, preinstalled)
>= QHas GMSTrichrome WebView Google Stable (default, preinstalled)
Trichrome WebView Google Beta
Trichrome WebView Google Dev
Trichrome WebView Google Canary
Trichrome WebView Google (no channel) (only userdebug/eng)
Standalone AOSP WebView or Trichrome WebView AOSP (only userdebug/eng)

Vendors modifying AOSP can configure which providers are compatible with their OS image, although they often stick with the default configuration (marked above as “AOSP”).

Vendors shipping OS images which include GMS and the Play Store must use Google's provided WebView configuration (marked above as “Has GMS”). This is to ensure Google can deliver WebView updates to users, and we enforce this with GTS tests. Most production Android devices use this configuration.

The currently selected WebView provider

Most devices use the default option listed in the table above. If your device supports multiple options, you can figure out which is currently selected by:

Switching WebView provider

On Nougat and above, you can switch WebView providers in developer settings or in your terminal:

# If you're building an app locally (change "system_webview_apk" as desired):
$ autoninja -C out/Default system_webview_apk
$ out/Default/bin/system_webview_apk install
$ out/Default/bin/system_webview_apk set-webview-provider

# Or, if you've already installed the app (change "com.android.webview" as
# desired):
$ adb shell cmd webviewupdate set-webview-implementation com.android.webview

WebView provider requirements

A package must fulfill several requirements to be eligible to be a WebView provider. These requirements are enforced by the WebView Update Service, which runs as part of the Android framework on the device.

Installed and enabled

On Android O+, an eligible WebView provider must be installed and enabled for all user profiles (some Android features are implemented behind the scenes with multiple user profiles). On Android L-N, the package only needs to be installed and enabled for the default user profile.

If you uninstall (or disable) the selected WebView provider, the WebView Update Service will fallback to a different package based on an ordered preference (the order is predetermined in the OS image). If there are no more eligible packages (if this was the only package or the user disabled/removed all other packages), WebView will simply not work and WebView-based apps will crash until the user re-enables one of the packages.

On Android N-P, com.google.android.webview and com.android.chrome are mutually exclusive, due to “fallback logic.” Disabling (or enabling) Chrome will enable (or disable) the WebView stub. See Important notes for N-P for more information.

Package name

For security reasons, Android will only permit a predetermined list of package names to act as WebView provider. The WebView team provides several different preset lists, depending how the Android image will be configured.

API levelHas GMS vs. AOSP?Allowed package names
L-MAOSPcom.android.webview (default, preinstalled)
L-MHas GMScom.google.android.webview (default, preinstalled)
N-PAOSPcom.android.webview (default, preinstalled)
N-P (TV/car devices)Has GMScom.google.android.webview (default, preinstalled)
N-P (other devices)Has GMScom.android.chrome (default, preinstalled)
com.chrome.beta
com.chrome.dev
com.chrome.canary
com.google.android.apps.chrome (only userdebug/eng)
com.google.android.webview (preinstalled) (see Important notes for N-P)
>= QAOSPcom.android.webview (default, preinstalled)
>= QHas GMScom.google.android.webview (default, preinstalled)
com.google.android.webview.beta
com.google.android.webview.dev
com.google.android.webview.canary
com.google.android.webview.debug (only userdebug/eng)
com.android.webview (only userdebug/eng)
The package name list can be configured in AOSP.

Signature (for user builds)

For security reasons, Android also checks the signature of WebView providers, only permitting apps signed with the expected release keys.

This requirement is waived on userdebug/eng devices so we can install local WebView builds (which don't have release keys) on test devices.

The signatures can be configured in AOSP.

targetSdkVersion

A valid WebView provider must implement all the APIs exposed in that version of the Android platform, otherwise calling a new API will crash at runtime. WebView Update Service can't reliably determine which APIs a provider implements, so we decided to use targetSdkVersion as a proxy for this:

  • For a finalized Android version, a valid WebView provider must declare a targetSdkVersion greater than or equal to the platform's Build.VERSION.SDK_INT value.
  • For a pre-release (AKA in-development) Android version, a valid WebView provider must declare a targetSdkVersion equal to Build.VERSION_CODES.CUR_DEVELOPMENT and be compiled with the corresponding pre-release SDK.

In the Chromium repo, we configure this in GN args by setting android_sdk_release = "x", where “x” is the lowercase codename letter of the desired OS version. Upstream chromium code usually only supports the latest public Android version, so you should use that value for all public Android OS versions. Googlers building with the internal repository may be able to override this to target the current pre-release Android version.

Note: it is not sufficient to simply change targetSdkVersion in the APK: new API calls will still crash at runtime! You should only configure this with android_sdk_release = "x", as this also pulls in the code to implement new Android APIs. See WebView for AOSP system integrators for details.

versionCode

We enforce a minimum versionCode both for security (to prevent downgrade attacks) and correctness (this ensures the package can implement all the new WebView APIs in the new version of the OS). This is computed at runtime by the WebView Update Service by taking the minimum of all valid WebView providers installed on the system image.

You generally should not hit this issue for local builds, but may see this if you're trying to install a really old WebView official build.

Declare a native library

Because WebView is implemented partially in C++, the Android framework must load its native library. On L, the native library must be called libwebviewchromium.so. Starting with M and above, the native library must be declared by the com.android.webview.WebViewLibrary metadata tag in AndroidManifest.xml. See Loading native code with RELRO sharing for more details if you're curious how this process works.

You generally should not hit this issue unless you're trying to install a target which is not WebView-capable (ex. chrome_public_apk instead of monochrome_public_apk).