├── LICENSE
├── README.md
└── package
├── Genymotion-ARM-Translation_for_4.4.zip
├── Genymotion-ARM-Translation_for_5.1.zip
├── Genymotion-ARM-Translation_for_6.0.zip
├── Genymotion-ARM-Translation_for_7.X.zip
├── Genymotion-ARM-Translation_for_8.0.zip
└── Genymotion-ARM-Translation_for_9.0.zip
- download Genymotion-ARM-Translation-for[v]
- Will download the toolkit drag and drop into the Genymotion directly,
- If failure
1. adb shell
2. cd /sdcard/Download/
3. sh /system/bin/flash-archive.sh /sdcard/Download/Genymotion-ARM-Translation.zip
4. adb reboot
- Resetting the Emulator
brew cask install android-platform-tools
If you are still getting this error message, follow the guide:
An error occured while deploying the file.
This probably means that the app contains ARM native code and your Genymotion device cannot run ARM instructions. You should either build your native code to x86 or install an ARM translation tool in your device.
- Verify if you have installed ARM_Translation successfully.
- Run
getprop ro.product.cpu.abilist
through ADB shell. If it showsx86,armeabi-v7a,armeabi
, ARM_Translation has been installed successfully. - If you don't know how to run ADB shell, follow this guide to get ABI information.
- Check if armeabi-v7a is enough for your APK.
- Run
unzip -l YOUR_APP.apk | grep -o ' lib/[^/]*/' | uniq
. If the only output islib/arm64-v8a/
, it means your APK doesn't support armv7 (32bit). You need another armv8 (64bit) translation tool. This project might help.