我尝试在模拟器 5554 上通过 Appium 安装 apk 文件。我收到以下错误,但可以通过 Appium 在真实设备上安装相同的 apk 文件并且可以正常工作。
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]
注意:emulator-5554 #pixel 6 pro Android 13(Playstore可用)。
正如错误所述[
INSTALL_FAILED_NO_MATCHING_ABIS
],原因应该是ABI架构不匹配,这意味着您的.apk
文件不包含模拟器支持的ABI配置。解决问题:
请参阅类似问题的回答。