对于Android的Andr​​oid模拟器安装Chrome [英] Install Chrome for Android in Android emulator

查看:308
本文介绍了对于Android的Andr​​oid模拟器安装Chrome的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在Android模拟器(运行Windows 7 64位)安装Chrome浏览器Android版。我试图从仿真器访问谷歌播放市场,但它不会让我安装。

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.

我想从这里安装镶边的Andr​​oid APK,但是当我推出Chrome浏览器是表示支持的操作系统的最低是冰淇淋sanwdich 4.0

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

使用Firefox浏览器是很容易的,我只是抓住了APK从他们的FTP服务器和放大器;运行 ADB安装命令,人们会认为它应与镀铬容易,但它真的不是!

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!

有什么建议吗?

推荐答案

您可以使用铬上的这个博客帖子

它甚至还提供了一个脚本,用于自动安装最新的APK:

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 

这篇关于对于Android的Andr​​oid模拟器安装Chrome的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆