본문 바로가기

Android

Re-installation failed due to different application signatures


안드로이드 개발중 다음과 같은 에러가 발생시


Re-installation failed due to different application signatures

You must perform a full uninstall of the application. WARNING: This will remove the application data!

Please execute 'adb uninstall com.android.project' in a shell.

Launch canceled!



컴퓨터2대로 작업할때 동일명의 프로젝트로 돌리려고할때 일어나는듯하다;

기존의 어플리케이션과 충돌되서인지 지워주라는 메시지이다.


위의 설명대로 command 창에서

자신의 Android-sdk 폴더에서 Platform-tools 폴더까지 가면

adb.exe 가 있다.

 

이것을 이용할 것이다.

sdk  폴더 들어간 후  다음 명령어를 치면된다.

 adb uninstall 프로젝트명 으로 해결본다.

 

예시) 

$cd /home/android-sdk/Platform-tools

$adb uninstall org.app.myProj




좀더 간단한 방법으로

직접 스마트폰에서 어플리케이션을 제거해주면 되겠다.

(더 깔끔한지는 모르겠음)