Some applications install, while others don't. This one in particular, WhatsApp Messenger, is very important for me to get running, since my Mobile Android device needs repairs. How can I get this installed?
1 回答
您是否尝试过通过 Google Play 进行操作?
尝试从 whatsapp 网站直接链接。
当我尝试在我的 AVD 上安装来自 Google Play 的应用程序时,我遇到了同样的错误。如果您决定在模拟器上运行应用程序,也许以下说明会对您有所帮助。
我有安装它的步骤(您已经需要安装 Android SDK 或 Bundle):
下载whatsapp(链接在上面)
运行你的模拟器 ./LOCATION/TO/sdk/tools/emulator -avd VM_NAME_HERE -partition-size 500 -no-audio -no-boot-anim -netfast
挂载存储:./LOCATION/TO/sdk/tools/platform-tools/adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system
授予权限 ./LOCATION/TO/sdk/tools/platform-tools/adb shell chmod 777 /system/app
将 apk 推送到设备:./LOCATION/TO/sdk/tools/platform-tools/adb push /LOCATION/TO/YOUR/WHATAPP/APK/WhatsApp.apk /system/app/。
就这样