Error generating final archive: Found duplicate file for APK: AndroidManifest.xml에러시 해결방안
안드로이드에서는 여러사람이 붙어 작업을 하다보면 특정 모듈에 대해 .jar파일로 받아 bulid include하여 작업할때가 있습니다.
이럴때 간혹 빌드를 하면 아래와 같은 에러가 나올때가 있습니다.
Error generating final archive: Found duplicate file for APK: AndroidManifest.xml
이유는 간단합니다. include된 .jar파일안에 AndroidManifest.xml이 포함되어서 발생된 문제입니다.
AndroidManifest.xml을 삭제한 .jar을 받아 다시 빌드하시면 정상동작 하는 모습을 보실수 있을 겁니다.
'프로그래밍 > 안드로이드' 카테고리의 다른 글
Can't create handler inside thread that has not called Looper.prepare() 에러발생시 해결방법 (1) | 2013.06.21 |
---|---|
아이폰 스타일 안드로이드 토글버튼 (1) | 2013.04.26 |
[안드로이드/Android] SharedPreferences (4) | 2013.03.27 |
[자바/Android] java.util.ConcurrentModificationException (6) | 2012.12.27 |
[안드로이드/Android] ImageView에서 ScaleType에 대해.. (0) | 2012.12.21 |
java.lang.IllegalArgumentException: View not attached to window manager (2) | 2012.12.20 |
[안드로이드/Android] 안드로이드 키보드 옵션 (8) | 2012.11.01 |
[안드로이드/Android] Bitmap Drawable 변환 크기 (5) | 2012.10.31 |
SQLite Android Database Cursor window allocation of 2048 kb failed (0) | 2012.10.26 |