Installing Chrome for Android on an emulator

Let me start by saying it is not possible. But I have a half solution.
If you have tried to install Chrome for Android before on an emulator you will be intimately familiar with the series of errors that occur, most noteably:
Arghhh… I am not going to document how you get this far because I will just be spreading alot of useless facts that ultimately lead you nowhere.


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan

<p>Let me start by saying it is not possible. But I have a half solution.</p> <p>If you have tried to install Chrome for Android before on an emulator you will be intimately familiar with the series of errors that occur, most noteably:</p> <figure> <img src="https://paul.kinlan.me/images/chromeandroidfail.png" /> </figure> <p>Arghhh... I am not going to document how you get this far because I will just be spreading alot of useless facts that ultimately lead you nowhere...</p> <p>The problem stems from the fact that Chrome for Android is only available from the Play Store and is not available for general download. Luckily Chromium is an Open Source project and whilst we don't have a full Chromium client available we do have access to the Test Shell.</p> <p>The Test Shell is Chromium without Chrome's Chrome. It doesn't look as pretty but it is fully functional as a Browser (minus all the cool stuff such as bookmarking, sync etc). It even includes the ability for you to connect the Remote Debugger to it from your Desktop. Brilliant!</p> <p>You can find all the recent builds at <a href="http://commondatastorage.googleapis.com/chromium-browser-continuous/index.html?path=Android/">http://commondatastorage.googleapis.com/chromium-browser-continuous/index.html?path=Android/</a> and install the builds on your Android device or emulator by running the following command:</p> <pre><code>adb install [path to the APK you just downloaded] </code></pre> <p>This is all pretty cool but still a pain. Ideally what you want is a way to quickly install the latest build of the Chrome on Android Test Shell on all the connected devices and emulators. Fortunately, this is possible. The kind engineers on the chromium project have a file called <a href="http://commondatastorage.googleapis.com/chromium-browser-continuous/Android/LAST_CHANGE">LAST_CHANGE</a> which gives us a pointer to the directory that contains the latest build. With this in hand we can script the entire process.</p> <p>The following script will determine the latest build of ChromiumTestShell, download it to a temporary file, extract ChromiumTestShell from the archive (into another temporary file) and then install it on your connected devices and emulators.</p> <pre><code>#! /bin/sh LATEST=`curl -s http://commondatastorage.googleapis.com/chromium-browser-continuous/Android/LAST_CHANGE` echo Latest Chromium Android at $LATEST TMP_DL=`mktemp -t chrome-android.XXXX` TMP_APK=`mktemp -t chrome-android.XXXX` REMOTE_APK=http://commondatastorage.googleapis.com/chromium-browser-continuous/Android/$LATEST/chrome-android.zip echo Downlaoding $REMOTE_APK to $TMP_DL curl $REMOTE_APK -o $TMP_DL echo Extracting ChromiumTestShell.apk to $TMP_APK unzip -p $TMP_DL chrome-android/apks/ChromiumTestShell.apk >> $TMP_APK adb install $TMP_APK </code></pre> <p>And that's it.</p> <p>I recongnise that there probably a lot of things wrong with this, so I have made it available for modification and improvement on GitHub - <a href="https://github.com/PaulKinlan/chromium-android-installer">https://github.com/PaulKinlan/chromium-android-installer</a>.</p>


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan


Print Share Comment Cite Upload Translate Updates
APA

Paul Kinlan | Sciencx (2013-06-11T00:00:00+00:00) Installing Chrome for Android on an emulator. Retrieved from https://www.scien.cx/2013/06/11/installing-chrome-for-android-on-an-emulator/

MLA
" » Installing Chrome for Android on an emulator." Paul Kinlan | Sciencx - Tuesday June 11, 2013, https://www.scien.cx/2013/06/11/installing-chrome-for-android-on-an-emulator/
HARVARD
Paul Kinlan | Sciencx Tuesday June 11, 2013 » Installing Chrome for Android on an emulator., viewed ,<https://www.scien.cx/2013/06/11/installing-chrome-for-android-on-an-emulator/>
VANCOUVER
Paul Kinlan | Sciencx - » Installing Chrome for Android on an emulator. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2013/06/11/installing-chrome-for-android-on-an-emulator/
CHICAGO
" » Installing Chrome for Android on an emulator." Paul Kinlan | Sciencx - Accessed . https://www.scien.cx/2013/06/11/installing-chrome-for-android-on-an-emulator/
IEEE
" » Installing Chrome for Android on an emulator." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2013/06/11/installing-chrome-for-android-on-an-emulator/. [Accessed: ]
rf:citation
» Installing Chrome for Android on an emulator | Paul Kinlan | Sciencx | https://www.scien.cx/2013/06/11/installing-chrome-for-android-on-an-emulator/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.