provideImageLoader

@Provides
@Singleton
fun provideImageLoader(okHttpCallFactory: Call.Factory, application: Context): ImageLoader

Since we're displaying SVGs in the app, Coil needs an ImageLoader which supports this format. During Coil's initialization it will call applicationContext.newImageLoader() to obtain an ImageLoader.

See also