Android 4.0 エミュレーターでの Google Play 質問する

Android 4.0 エミュレーターでの Google Play 質問する

Android 4.0 エミュレータに Google Play .apk をインストールするにはどうすればよいですか?

ベストアンサー1

Googleアプリ(GoogleLoginService.apk、GoogleServicesFramework.apk、Phonesky.apk)を
以下からダウンロードしてください。ここ

エミュレータを起動します:

emulator -avd VM_NAME_HERE -partition-size 500 -no-audio -no-boot-anim

次に、次のコマンドを使用します。

# Remount in rw mode.
# NOTE: more recent system.img files are ext4, not yaffs2
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system

# Allow writing to app directory on system partition
adb shell chmod 777 /system/app

# Install following apk
adb push GoogleLoginService.apk /system/app/.
adb push GoogleServicesFramework.apk /system/app/.
adb push Phonesky.apk /system/app/. # Vending.apk in older versions
adb shell rm /system/app/SdkSetup*

おすすめ記事