안드로이드 에러/기타
The currently selected variant "arm-debug" uses split APKs,~
ITPangPang
2016. 12. 24. 16:03
The currently selected variant "arm-debug" uses split APKs,~
ㆍ 새로운 pc에서 github에 올라와있는 프로젝트를 써보기
위해 프로젝트를 clone 한 후에 실행시켜보는데 위와 같은
에러가 발생했다.
전체 에러내용을 보자면
The currently selected variant "arm-debug" uses split APKs,
but none of the 1 split apks are compatible with the current device
with density "320" and ABIs "x86".
Error while Install APK
해결방법은 어렵지 않았다
[Gradle Scripts] - [build.gradle(Module:app)]
에서 defaultConfig에
ndk{
abiFilters "x86"
}
을 추가하니 바로 해결되었다.