glide
glide copied to clipboard
An image loading and caching library for Android focused on smooth scrolling
This [line](https://github.com/bumptech/glide/blob/master/library/src/main/java/com/bumptech/glide/manager/SingletonConnectivityReceiver.java#L279) using context.registerReceiver, when using android 14 and app targeting SDK 34, we should specify flag exported/not exported. https://developer.android.com/about/versions/14/behavior-changes-14#runtime-receivers-exported Can you help doublecheck if it necessary to add that...
It seems only happen in high aspect ratio image will crash. Like 760x58, but normal image will not crash, like 760x500. ``` java.lang.RuntimeException: Canvas: trying to draw too large(105836080bytes) bitmap....
GlideApp.with(imageView) .load(byteArray) .transform(RoundedCorners(20)) .into(imageView) I only want to load a small image: example: width: 1900, height: 50. java.lang.RuntimeException: Canvas: trying to draw too large(206507928bytes) bitmap. at android.graphics.RecordingCanvas.throwIfCannotDraw(RecordingCanvas.java:281) at android.graphics.BaseRecordingCanvas.drawBitmap(BaseRecordingCanvas.java:91) at...
There's a difference in the way KSP handles `@GlideModule` annotation in comparison to KAPT. * **KSP**: the exact class which is annotated with `@GlideModule` must extend `AppGlideModule` or `LibraryGlideModule` *...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [com.github.tschuchortdev:kotlin-compile-testing-ksp](https://redirect.github.com/tschuchortdev/kotlin-compile-testing) | `1.4.9` -> `1.6.0` | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/)...
i have a ipfs url link: https://bafkreibrvtwbbiyynjtgedbw6keddxfhmmfvqaawyrfylhalhjtfuuvore.ipfs.nftstorage.link my code for android: @GlideModule public class IPFSAppGlideModule extends AppGlideModule { @Override public void applyOptions(Context context, GlideBuilder builder) { } @Override public void...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [androidx.benchmark:benchmark-junit4](https://developer.android.com/jetpack/androidx/releases/benchmark#1.3.4) ([source](https://cs.android.com/androidx/platform/frameworks/support)) | `1.2.0-beta05` -> `1.3.4` | [](https://docs.renovatebot.com/merge-confidence/) |...
I found Glide cannot load this gif at all android devices, like Pixel 3 XL.  My code: build.gradle ``` dependencies { // Glide implementation 'com.github.bumptech.glide:glide:4.13.2' } ``` MainActivity ```...
Hello Glide team, I’m currently developing an Android Automotive app using the Android Car App Library, and I frequently need to load images into Row templates from URLs. Currently, the...
"com.github.bumptech.glide:compose", version = "1.0.0-beta01" In clasic glide we can make cutom DrawableTransitionOption ``` fun optionalCrossFade(): DrawableTransitionOptions { return DrawableTransitionOptions.with { dataSource, isFirstResource -> if (dataSource == DataSource.DATA_DISK_CACHE || dataSource ==...