컴퓨터팁
[Android] INSTALL_FAILED_CONTAINER_ERROR 오류/Phone And emu/Installation error: INSTALL_FAILED_CONTAINER_ERROR
momo is
2019. 7. 4. 23:29
Android] INSTALL_FAILED_CONTAINER_ERROR 오류/Phone And emu/Installation error: INSTALL_FAILED_CONTAINER_ERROR
폰이나 엡뮬레이터에 배포할때 남은 공간이 충분히 있는데도 불구하고
다음과 같은 오류가 발생할때가 있다
Installation error: INSTALL_FAILED_CONTAINER_ERROR
[폰일 경우]
1. Go to play settings, android tab
2. Under other settings/Configuation/Install Location, set this to "Automatic"
[에뮬레이터일 경우]
AndroidManifest.xml 파일에 다음을 수정하거나 추가한다.
android:installLocation="preferExternal"
to
android:installLocation="auto"
혹시 어디다 추가하는지 모르시는 분들을 위해...^^
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.test2"
android:versionCode="1"
android:installLocation="auto"
android:versionName="1.0" >