I'm trying to install the apk file through Appium on the emulator 5554. I'm receiving the following error, but the same apk file can be installed on a real device through Appium and it works.
Response code 500. Message: An unknown server-side error occurred while processing the command. Original error: Error executing adbExec. Original error: 'Command ''C:\\Users\\LENOVO IDEAPAD C340\\AppData\\Local\\Android\\Sdk\\platform-tools\\adb.exe' -P 5037
-s emulator-5554 install D:\\PROJECT\\qasfa\\resources\\appFile\\6.3.2.0.15.apk' exited with code 1'; Command output: adb: failed to install D:\PROJECT\qasfa\resources\appFile\6.3.2.0.15.apk: Failure [INSTALL_FAILED_NO_MATCHING_ABIS: INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113]
Note: emulator-5554 #pixel 6 pro Android 13 ( playstore available).
As an error says [
INSTALL_FAILED_NO_MATCHING_ABIS] the reason should be mismatching ABI architecture, meaning that your.apkfile does not contain ABI configuration supported by emulator. To solve an issue:Please see answer to similar question.