안드로이드 스튜디오에서 에러 내용은 아래와 같다.
안드로이드 스튜디오를 1.4에서 2.2로 새로 셋팅하면서 문제가 발생했다.
L:\AndroidProject\EdgeVA\app\src\main\res\layout\activity_main.xml
Error:(26) No resource identifier found for attribute 'srcCompat' in package 'com.samsung.sds.dmm.edgeva'
L:\AndroidProject\EdgeVA\app\build\intermediates\res\merged\debug\layout\activity_main.xml
Error:(26) No resource identifier found for attribute 'srcCompat' in package 'com.samsung.sds.dmm.edgeva'
Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.process.ProcessException: Failed to execute aapt
요약하면 에러 내용은
no resource identifier found for attribute 'srcCompat' in package
해결방법은
xmlns:app="http://schemas.android.com/apk/res-auto"
to
xmlns:app="http://schemas.android.com/apk/lib/com.google.edgeva"
=> 아래처럼 패키지명으로 변경하여 해결함
참고 :
http://stackoverflow.com/questions/38161864/no-resource-identifier-found-for-attribute-srccompat-in-package-learnapp-andr
'IT이야기 > Android' 카테고리의 다른 글
이미지뷰에 있는 이미지 늘리기(Stretch) (0) | 2016.10.14 |
---|---|
안드로이드 실선 그리기 (0) | 2016.10.14 |
jcenter 경로 오류 : Failed to resolve : Error:(23, 17) junit:junit:4.12 in android studio 2.2 (1) | 2016.09.29 |
[Android개발] 앱 시작시키는 방법 (1) | 2016.03.28 |
[안드로이드]다운로드매니저 애러 잡기 (0) | 2016.03.02 |