Jared Burrows
Jared Burrows
@DPUkyle Try syncing with the latest code and push back up.
@DPUkyle I did not see the "re-run failed" jobs, so I just synced it now.
I still see ``` e: /home/runner/work/gradle-versions-plugin/gradle-versions-plugin/gradle-versions-plugin/build/classes/kotlin/main/com/github/benmanes/gradle/versions/updates/DependencyUpdatesTask.class: Class 'com/github/benmanes/gradle/versions/updates/DependencyUpdatesTask' was compiled with an incompatible version of Kotlin. The binary version of its bytecode is unknown, expected version is 1.0.3 ```
@DPUkyle Will update this PR and resolve the rest here - https://github.com/ben-manes/gradle-versions-plugin/pull/695.
Thank you @DPUkyle @bigdaz!
Closing this.
How do you reproduce this? Do you have example code?
Since you are using `GlideApp`, you can share the cache for both OkHttp and Glide, see this example: https://github.com/jaredsburrows/android-gif-example/blob/master/app/src/main/java/com/burrowsapps/example/gif/di/AppGlideModule.kt#L56.
@kurtsson @sanjeevirajm I adopted this solution here: https://github.com/jaredsburrows/android-gif-example/commit/5690523c6dc40c435c3d81868d89ba26d21e3663. ### Code: ``` class ImageService @Inject constructor(@ApplicationContext private val context: Context) { /** Compose views */ fun loadGif( imageUrl: String, thumbnailUrl: String,...
@yuval-netanel @vitkhudenko Where are you using this in your app? Can you not mock it out for certain tests?