As WebView is an Android system component (rather than just an app), WebView imposes additional requirements on the developer workflow. In particular, WebView requires a physical device or emulator with a userdebug
or eng
Android image.
To build WebView, or run WebView's automated tests, you'll need to set up either an emulator or a physical device.
x86
emulator should be easier to setup.You can generally follow chromium's Android emulator instructions. You should choose a Google APIs image. The AOSP-based image will also work, but imposes additional developer hurdles.
Googlers can consult internal instructions here.
Unfortunately, Google does not offer prebuilt userdebug
/eng
images for external contributors.
Prerequisite: a machine capable of building Android.
Clone an AOSP checkout, picking a branch supported for your device (you'll need a branch above 5.0.0) from the list of branches:
mkdir aosp/ && cd aosp/ && \ repo init -u https://android.googlesource.com/platform/manifest -b android-9.0.0_r33 && \ repo sync -c -j<number>
You can obtain binary drivers for Nexus/Pixel devices here. Drivers should match your device and branch. Extract and run the shell script:
# Change the filenames to match your device/branch (this uses "crosshatch" as an # example) tar -xvzf /path/to/qcom-crosshatch-pd1a.180720.030-bf86f269.tgz ./extract-qcom-crosshatch.sh # Extracts to the vendor/ folder
You can build AOSP and flash your device with:
source build/envsetup.sh device="crosshatch" # Change this depending on your device hardware lunch aosp_${device}-userdebug make -j<number> # Flash to device adb reboot bootloader fastboot -w flashall
For more information, please defer to official instructions.
user
images have all of Android‘s security features turned on (and they can’t be disabled). In particular, you won't be able to install a locally built WebView:
user
images are release-keys
signed, which means local WebView builds can't install over the preinstalled standalone WebView. This blocks development on L-M, since this is the only WebView provider.monochrome_{public_}apk
, this is not a valid WebView provider. Unlike on userdebug
/eng
images, the WebView update service performs additional signature checks on user
images, only loading code that has been signed by one of the expected signatures--as above, these keys are not available for local builds.Both of the above are important security features: these protect users from running malware in the context of WebView (which runs inside the context of apps).