对于Android的Andr​​oid模拟器安装Chrome模拟器、Andr、Android、Chrome

2023-09-08 08:46:05 作者:致命の疼

我想在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