학습
Firebase Storage 이미지를 coil로 로딩할 때 캐싱이 되지 않는 이유
원인 분석 Coil 라이브러리를 이용해 Firebase Storage 이미지를 다시 로딩하면 매번 네트워크에서 새롭게 요청합니다. 위 로그는 Coil ImageLoader 클래스에 로거를 추가하면 확인할 수 있습니다.Application 클래스에서 ImageLoaderFactory 인터페이스의 newImageLoader 함수를 구현합니다. 그러면 coil이 이미지를 로딩할 때 모두 적용됩니다. class App : Application(), ImageLoaderFactory { .... override fun newImageLoader(): ImageLoader { return ImageLoader(this).newBuilder() .memoryCachePol..