강의

멘토링

커뮤니티

Inflearn Community Q&A

shafeel22040's profile image
shafeel22040

asked

[Intermediate] Friendly Introduction to JETPACK <Part 1> (Android Kotlin)

Retrofit + ViewModelScope + RecyclerView + Glide

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

Written on

·

311

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")

 

 

androidkotlinjetpack

Answer 2

0

bokchi님의 프로필 이미지
bokchi
Instructor

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

0

shafeel2님의 프로필 이미지
shafeel2
Questioner

아래처럼 수정하니 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"/>

 

 

shafeel22040's profile image
shafeel22040

asked

Ask a question