Android/Android Studio

[android]cannot resolve symbol contextcompat

클레인 2019. 3. 16.
반응형

에러메시지 "cannot resolve symbol contextcompat" 가 발생하면

"android.support.v4.content.ContextCompat" 의존 라이브러리가 설치 되지 않아서 나타나는 이슈이다.


해결책은 

build.gradle 파일 내에 의존성을 추가해주면 된다.

dependencies {
// other stuff here
    compile 'com.android.support:support-v4:23.0.0'
// update the 23.0.0 to latest version available

}


반응형

댓글