Inflearn コミュニティ Q&A
Retrofit + ViewModelScope + RecyclerView + Glide 강의중에서
作成
·
306
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
回答 2
0
0
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"/>





