va_run
va_run
removing // implementation 'com.github.bumptech.glide:annotations:4.13.1' worked.
This is the AppGlideModule that I am using : `package com.example.avifexperiment import android.content.Context import com.bumptech.glide.Glide import com.bumptech.glide.GlideBuilder import com.bumptech.glide.Registry import com.bumptech.glide.annotation.GlideModule import com.bumptech.glide.load.engine.cache.DiskLruCacheFactory import com.bumptech.glide.module.AppGlideModule @GlideModule class LoaderGlideModule: AppGlideModule() {...
``` implementation 'com.github.bumptech.glide:glide:4.13.1' implementation 'com.github.bumptech.glide:avif-integration:4.13.1' // implementation 'com.github.bumptech.glide:annotations:4.13.1' implementation 'com.github.bumptech.glide:okhttp3-integration:4.13.1' kapt 'com.github.bumptech.glide:compiler:4.13.1' ``` hey @vigneshvg this is the snippet from my module gradle file. I am using kotlin so has...