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 Answers
Have you tried to do it through Google Play?
Try direct link from whatsapp web-site.
I had the same error when I was trying to install the app from Google Play on my AVD. Perhaps following instruction will be helpful for you if you decide to run the app on the emulator.
There were my steps to install it (you already need an installed Android SDK or Bundle):
Download whatsapp (link is above)
Run your emulator ./LOCATION/TO/sdk/tools/emulator -avd VM_NAME_HERE -partition-size 500 -no-audio -no-boot-anim -netfast
Mount the storage: ./LOCATION/TO/sdk/tools/platform-tools/adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system
Give permissions ./LOCATION/TO/sdk/tools/platform-tools/adb shell chmod 777 /system/app
Push the apk to the device: ./LOCATION/TO/sdk/tools/platform-tools/adb push /LOCATION/TO/YOUR/WHATAPP/APK/WhatsApp.apk /system/app/.
That's all

- 620
- 6
- 9