SD카드로 어플 이동 지원은 버전 2.2 (Froyo)부터 지원 가능하다.


manifest에서 android:installlocation 설정으로 구미에 맞게 사용가능하다.

대입값은 모두 3가지로

- auto 는 기본적으로 내장메모리에 저장하되, 외장메모리로 이동 설정이 가능하다.
  내장메모리가 가득찰 경우, 외장메모리로 저장이 된다.
- internalOnly 는 무조건 내장메모리에 저장한다.
- perferExternal 는 기본적으로 외장메모리에 저장하되, 내장메모리로 이동설정이 가능하다.

(예1_auto)
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="패키지명"
......
android:installlocation="auto" >

(예2_internalOnly)
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="패키지명"
......
android:installlocation="internalOnly" >

(예3_perferExternal)
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="패키지명"
......
android:installlocation="perferExternal" >





Message:

- Rename Resource

Resource 'xxxxxxx' is out of sync with file system.


다른 곳에서 가져온 소스를 인식하지 못하는 에러라고 하는데,

Clean 으로 손쉽게 해결!!! 


1) Project -> clean ->

2) Clean projects selected below

3) select projects

4) OK


and retry!!!

+ Recent posts