[뉴톤 api] 라이브러리 추가 시 오류 문의

daum-speech-openapi-5.0 을 라이브러리 추가 후 에뮬레이터 실행 시 오류가 발생합니다.

환경 : android studio,
SDK Version : API 26: Android 8.0( O)
Build Tools Version : 26.0.0

추가 방법 : File - new -Inport module - daum-speech-openapi-5.0 추가
File - Project Structure - 앱이름 - Dependencies - Add -
Module Dependencies - :daum-speech-openapi-5.0

추가 후 실행 시 Build는 문제 없지만 Run실행 시

Installation failed with message Failed to finalize session : INSTALL_FAILED_NO_MATCHING_ABIS: Failed to extract native libraries, res=-113.
It is possible that this issue is resolved by uninstalling an existing version of the apk if it is present, and then re-installing.

WARNING: Uninstalling will remove the application data!

Do you want to uninstall the existing application?

오류 팝업창이 생성됩니다. 이 오류 해결방법을 알 수 있을까요?

자답입니다.
(몇일동안 고생했는데 쉽게 풀렸네요 ㅠㅠ… 혹시라도 다른분이 필요하실까봐 남깁니다.)

build.gradle(moudle:“앱이름”)에서

android{

splits {
abi {
enable true
reset()
include ‘x86’, ‘armeabi-v7a’
universalApk true
}
}
를 추가하면됩니다~

4개의 좋아요

참고하겠습니다. 감사합니다.