인프런 커뮤니티 질문&답변

shafeel2님의 프로필 이미지
shafeel2

작성한 질문수

[중급편] 친절한 JETPACK 개론 <상> (Android Kotlin)

Retrofit + ViewModelScope + RecyclerView + Glide

Retrofit + ViewModelScope + RecyclerView + Glide 강의중에서

작성

·

164

0

CustomAdapter.kt 파일내

Glide.with(context)

이부분에서 빨간줄이 생기고 Unresolved reference: Glide

라는 에러메세지가 생기네요

build.gradle.kts

implementation("com.github.bumptech.glide:glide:4.13.0'")
annotationProcessor("com.github.bumptech.glide:compiler:4.14.2")

 

 

답변 2

0

개복치개발자님의 프로필 이미지
개복치개발자
지식공유자

수정 전과 수정 후의 전체 코드를 구분해서 공유해주실 수 있으실까요?
전체 코드를 공유해주시면 살펴보겠습니다!

0

shafeel2님의 프로필 이미지
shafeel2
질문자

아래처럼 수정하니 Glide 부분에 에러가 사라지는군요

왜 그럴까요 ???

build.gradle.kts

implementation("com.github.bumptech.glide:glide:4.14.2")
annotationProcessor("com.github.bumptech.glide:compiler:4.14.2")

 

AndroidManifest.xml

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

 

 

shafeel2님의 프로필 이미지
shafeel2

작성한 질문수

질문하기