27

I want to install the Chrome for Android on the Android emulator (running Windows 7 64bits). I tried accessing the google play market from the emulator, but it won't let me install.

I tried installing the chrome for android APK from here, but when I launch chrome it says the minimum supported OS is ice cream sanwdich 4.0

With FireFox it was very easy, I just grabbed the APK from their FTP server & run the adb install command, one would think it should be even easier with chrome, but it's really not!

Any advice please?

TheDude
  • 3,045
  • 4
  • 46
  • 95

5 Answers5

21

Android 5.1, Chrome 57:

  • Create emulator.
  • Run emulator.
  • Wait for emulator to boot.
  • Download chrome-android.apk to your PC.
  • Drag-drop apk to emulator screen.

Should install. Takes a long time.

enter image description here

TEH EMPRAH
  • 1,828
  • 16
  • 32
9

You can install Chromium using the instructions on this blog post

It even provides a script for automating installing the latest apk

#! /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 
Libin Varghese
  • 1,506
  • 13
  • 19
Sam Hasler
  • 12,344
  • 10
  • 72
  • 106
2

The easiest solution for me was to select a different emulator image that already had both chrome and play installed as per this question.

JohnOpincar
  • 5,620
  • 3
  • 35
  • 38
1

Chrome needs Google Play Services installed as a system application. This solution involves setting up a Genymotion emulator, flashing Google Play Services, then installing Google Chrome through Google Play.

You'll need a Google account and a Genymotion account (free for non-commercial use). It will take about 30-40 minutes, most of which will be spent downloading/updating.

  1. Download the Google Play Services update zip for whatever version you're using here: https://goo.im/gapps/. I wanted to use 4.4.4, so I chose gapps-kk-20140606-signed.zip

  2. Download and install Genymotion (free for non-commercial use): https://www.genymotion.com/?utm_source=dlvr.it&utm_medium=twitter#!/download

  3. Open it up, sign in with your Genymotion account, set up whatever emulator you want. Start the emulator.

  4. When it starts, drag 'n' drop the gapps zip you downloaded earlier into the emulator. It'll copy across, then ask if you want to flash it. Click yes. When it's done, close the emulator and start it up again.

    For the rest of this you might get frequent popups saying that Google Plus or whatever didn't install correctly. Just hit okay and soldier on.

  5. Now you need to sign into your Google account. Go Settings -> Accounts -> Add Account -> Google. Follow the prompts.

  6. Open up Google Play. Open the left menu -> Settings. Tap the 'Build Version' cell a few times. It will say that the new version will be downloaded and installed.

  7. Wait (you don't have to stay on the settings page). After all the apps have updated (you might have to accept new permissions) the Build Version will have changed and taping it again will show a prompt that says it is at the newest version.

  8. Open up Google Play Store and download and install Chrome.

Xiao
  • 1,552
  • 2
  • 22
  • 20
-1

Pls. check if your emulator is on android 4.0 or above. The chrome app is not supported for earlier versions. Also, to install from the play store, you need to have configured an account. If you have both these then you should be able to install.

You could refer to these :

http://piotrbuda.eu/2012/05/installing-google-play-on-android-emulator.html How to install Android Market App on the emulator?

Community
  • 1
  • 1
lokoko
  • 5,785
  • 5
  • 35
  • 68
  • 2
    I do have android 4+, whenever I try to install from the google play website (using the emulator of course), I get this message `You haven't accessed the Google Play Store app (the white shopping bag app icon) on your device with this email account.` I checked the FAQ & waited enough time, but all I got is an endless `Loading devices compatibility...` message – TheDude Feb 07 '13 at 09:30
  • 1
    Have you added the google play - services ? that would be a part of your sdk manager – lokoko Feb 07 '13 at 09:45
  • I'm still reading / applying the instructions...I'll update you when I'm done (thanks for the help!) – TheDude Feb 07 '13 at 10:08
  • Sorry for the late reply, I tried countless times, fisrt first Vending.apk doesn't exist, I replaced it wit Phonesky.apk in the script (can't remember where I read this), but then I always end up with an Out of memory error, even though I increased storage & RAM to be high enough. Any other idea? – TheDude Feb 07 '13 at 15:20
  • Also, *if* I enable snapshots, neither firefox nor the android built-in browser would work (browser crash, start won't help), so I can't even go to google play store to get the chrome for android – TheDude Feb 07 '13 at 15:22