AndroidManifest.xml 에 아래와 같이 installLocation 을 추가 한다.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.freecatz.test"
android:versionCode="3"
android:versionName="1.6"
android:installLocation="preferExternal" >
auto : 자동으로 내장메모리에 우선 설치 하나 공간이 없는 경우 외장메모리에 설치.
internalOnly : 내장 메모리에 설치.
preferExternal : 외장메모리에 설치를 우선으로 하나 공간이 없는 경우 내장메모리에 설치.
'프로그래밍 > Android' 카테고리의 다른 글
(참조) 이클립스에서 폰트/크기 변경하기 (0) | 2013.12.21 |
---|---|
1. 안드로이드 개발 환경 만들기 (0) | 2013.12.17 |