google-ar / WebARonARCore

An experimental Chromium modification in the form of an app for Android that lets developers build Augmented Reality (AR) experiences using web technologies on top of Google's ARCore.
https://developers.google.com/ar/develop/web/getting-started
Apache License 2.0
756 stars 115 forks source link

WebARonARCore

An experimental browser for Android that lets developers create Augmented Reality (AR) experiences using web technologies. An iOS version is also available.

Spawn-at-Camera exampleSpawn-at-Surface example

Note: This is not an official Google product. Nor is it a fully-featured web browser. Nor are the enabling JavaScript APIs standards, or on the standardization path. WebARonARCore is only meant to enable developer experimentation.

Getting started

1. Install the ARCore APK Developer Preview 1

WebARonARCore is still built on top of the Android ARCore Developer Preview 1 APK and because of that, only a certain number of devices are supported officially: Google Pixel 1 and 2 (both standard and XL) and Samsung Galaxy S8. The check to only detect these devices at runtime has been removed but the behavior on other ARCore models (supported by newer ARCore versions) is undefined.

Install the ARCore APK, either directly from a device:

...or by using ADB:

2. Install the WebARonARCore APK

Directly from a device:

...or by using ADB:

Alternatively, the WebARonARCore APK can be built and installed from source.

3. Viewing examples

A list of example scenes compatible with WebARonARCore and WebARonARKit are available at developers.google.com.

4. Building your own scenes

To build AR web experiences that work with WebARonARCore (or WebARonARKit for iOS), we recommend three.ar.js, a helper library that works with the popular three.js WebGL framework. Three.ar.js provides common AR building blocks, such as a visible reticle that draws on top of real world surfaces, and example scenes.

5. Debugging

WebARonARCore uses WebViews, which is a similar debugging process to debugging Chrome for Android tabs. Check out the prereqs for your device at Get Started with Remote Debugging Android Devices, and learn more about Remote Debugging WebViews by opening chrome://inspect in the desktop browser while your device is connected via USB.

Building the WebARonARCore APK from source

WebARonARCore can optionally be built and installed from source. Instructions for cloning and building Chromium are available at chromium.org

Prerequisites:

We recommend the following steps:

  1. Open a terminal window
  2. Install depot_tools. You can follow this tutorial or simply follow these 2 steps:
    • git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
    • export PATH=$PATH:/path/to/depot_tools
  3. Create a folder to contain chromium and move to it: $ mkdir ~/chromium && cd ~/chromium
  4. Checkout the Chromium repo: ~/chromium$ fetch --nohooks android. Note: This process may take a long time (an hour?)
  5. Enter the src folder: $ cd src.
  6. Download the dependencies: $ gclient sync. Note: This process may take some time too.
  7. Install the build dependencies: ~/chromium/src$ build/install-build-deps-android.sh
  8. Setup the environment: ~/chromium/src$ . build/android/envsetup.sh
  9. Add this git repo as a remote (we are going to call it 'github'): git remote add github https://github.com/google-ar/WebARonARCore.git
  10. Fetch the newly added remote: git fetch github
  11. Checkout the webarcore branch from the github remote: git checkout --track github/webarcore_57.0.2987.5
  12. Synchronize the dependencies with this command: ~/chromium/src$ gclient sync --disable-syntax-validation. Note: This process may take some time too.
  13. Create a folder where to make the final product compilation: ~/chromium/src$ mkdir -p out/build.
  14. Create and edit a new file out/build/args.gn. Copy and paste the following content in the args.gn file:
    target_os = "android"
    target_cpu = "arm64"
    is_debug = false
    is_component_build = true
    enable_webvr = true
    proprietary_codecs = false
    ffmpeg_branding = "Chromium"
    enable_nacl = false
    remove_webcore_debug_symbols = true
  15. Prepare to build: ~/chromium/src$ gn args out/build. Note: once the command is executed, the vi editor will show you the content of the args.gn file just edited a few steps before. Just exit by pressing ESC and typing colon and x.
Build, install and run

The line below not only compiles Chromium but also installs the final APK on to a connected device and runs it, so it is convenient that you to connect the device via USB before executing it. The project that will be built by default is the Chromium WebView project, the only one that has been modified to provide AR capabilities.

~/chromium/src$ ./build_install_run.sh

You can review the content of the script to see what it does (it is a fairly simple script) but if you would like to compile the final APK on your own you could do it by executing the following command:

~/chromium/src$ ninja -C out/build android_webview_apk

The final APK will be built in the folders ~/chromium/src/apk and ~/chromium/src/out/build/apks.

How WebARonARCore works

WebARonARCore is built of two essential technologies: ARCore and Chromium. We also extend the WebVR 1.1 API, which gives us much of what we need for augmented reality, with a few more essentials, such as motion tracking, rendering of the camera's video feed, and basic understanding of the real world. For details, see WebVR API extension for smartphone AR

Known issues

Future work

License

Apache License Version 2.0 (see the LICENSE file inside this repo).