2,328 questions
-1
votes
1
answer
30
views
Why does gradle fail with "[ksp] No providers found in processor classpath." after KSP migration?
I am currently undergoing the KSP migration in my android app, to get rid of annotationProcessor and kapt
See also this doc
I have included the plugin in the root gradle an in all module gradle files ...
0
votes
1
answer
4k
views
Expo-Image does not support 16KB page sizes for Android
I am developing an Expo RN app, and I recently updated to Expo 53.0.9, react 19.0.0 and React Native 0.79.2 + ndk 28 for android.
I am trying to build my app so that it would support 16KB page sizes ...
0
votes
0
answers
24
views
Why does Glide require an additional module or manual registration to load Firebase Storage references?
I’m working on an Android app that uses Glide to load images from Firebase Storage (using StorageReference). Initially, I was using the following standard Glide call:
Glide.with(context).load(...
0
votes
1
answer
112
views
Memory Usage in Android App Keeps Increasing Over Time (Others Category in Profiler)
I am developing an Android app that primarily focuses on:
Fetching details from an API.
Receiving updates via MQTT.
Displaying content based on the received data, including:
Videos using ExoPlayer ...
1
vote
0
answers
61
views
Android Glide + okHttp -- Some users experience very slow image loading and network speeds on wifi, but no problems on mobile data
I am experiencing a weird issue that only affects some of my users (and unfortunately not my own devices).
On wifi, when loading up resources, the data will take AGES to download. But then the user ...
0
votes
0
answers
27
views
How to send images out of database from fragment to fragment in Android Studio using Glide
I try to send an image that is stored in the database from one fragment to the other.
In the first one (using a recyclerview) it gets displayed, but in the second one (normal fragment) it doesnt work ...
0
votes
0
answers
48
views
Why textview is not appearing on Gif when using Glide?
I have an ImageView, and below it, there is a TextView. Both are inside a ConstraintLayout.
The ImageView can display either a GIF or a normal image.
The TextView appears fine when I use a normal ...
0
votes
0
answers
44
views
Glide loading image urls very slow in viewpager2 + Circular Indicator not visible
I'm just trying to fetch 5 images (all less than 50 KB size) from server and then trying to load them into viewpager2 slide show at the top of fragment using glide and urls, also the images are coming ...
0
votes
1
answer
68
views
How to preLoad an image format from the cache and get it later by UID from cache using Coil/Glide
That's say I have a data class from the server in the data layer
data class AvatarPreload(
val base64: String,
val uid: Long
)
Then I want to save it into my disk/memory, because the View layer ...
1
vote
0
answers
89
views
Why does Glide Compose load part of the image?
I'm trying to render some pictures that the user has taken, but Glide shows only the top part of the image. After going back and forth to the screen, it finally loads properly. I never had that issue ...
1
vote
0
answers
44
views
Glide adds black corners when loading an image to ShapeableImageView which is not attached to window
I need to share an image that is dynamically created with a profile image. The image is never visible to the user in the app.
Steps:
Create the custom view programmatically
Create the bitmap image of ...
0
votes
1
answer
120
views
Glide Image Download with Bearer fails
I'm trying to download a jpg File with Glide. The File is secured with a Bearer. I tried the following. Free images without a Bearer protection work as expected.
suspend fun downloadUrlToBitmap(...
-1
votes
1
answer
205
views
Glide: Load local SVG file into ImageView
I have a local SVG file that I want to load into my image view. The SVG file is provided to my app thru our integration mechanism in the company. In other words, I cannot get the SVG file thru the ...
0
votes
1
answer
36
views
"How to obtain the number of images loaded successfully from a list using GlideImage?"
I have a list of strings where I store network images that I later iterate through within a forEach loop, and within it, I have the GlideImage composable that allows me to determine if the image was ...
4
votes
2
answers
855
views
Getting a thumbnail for a remote video without downloading it completely
I have a list of links to video files located on a server on the network.
I need to display this list with thumbnails for each video. The first frame of this video would suit me.
How can I show a ...
1
vote
0
answers
643
views
Glide not showing SVG image
I'm using Glide to show SVG flag inside an ImageView. When i use PNG url it works perfectly, instead when i use SVG url it doesn't work.
private void loadImage(String country, ImageView flag) {
...
1
vote
1
answer
136
views
Album Art now visible in Android 11
My android application works fine till Android 9 but is failing to show thumbnails for music files in Android 11.
In the logs I'm receiving UnsupportedOperationException: Unknown or unsupported URL ...
0
votes
0
answers
265
views
Glide : No address associated with hostname
I use Glide to load images. Some images, like the link below, cannot load, while this image loads well in the browser. Do you know what to do to solve this problem?
https://volleyball.ir/wp-content/...
1
vote
3
answers
992
views
How to show thumbnail of a pdf in a list of pdf files without any lag in my app?
I need to show thumbnail of each pdf file in a recyclerview of pdf files in my app. But, when I set it using Glide, the UI becomes jaggy. How should I create the image of the first page of the PDF ...
0
votes
0
answers
137
views
Glide not loading images from IP url Connection reset Socket exception
Help with glide, I have a VDS server that does not have a domain, but I receive JSON data from the API from it, but I don’t understand when I want to load an image on the screen using Glide, it gives ...
3
votes
0
answers
243
views
Compose landscapist GlideImage: throws java.lang.RuntimeException: Canvas: trying to draw too large(256576512bytes) bitmap
I am using com.github.skydoves:landscapist-glide:1.5.2 with compose version 1.2.0-rc01 & kotlin_version = "1.7.0",
I am loading list of member details with user profile image(from ...
1
vote
1
answer
724
views
Error using Hilt to inject OkHttpClient into AppGlideModule
I am trying to inject an OkHttpClient into an AppGlideModule using Hilt.
My network module provides the http client:
@Singleton
@Provides
fun provideOkHttpClient(
tokenInterceptor: ...
0
votes
0
answers
31
views
Image not fetching from Firebase Realtime Database
package com.example.bloomroom;
import android.content.Context;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android....
0
votes
2
answers
59
views
I can't apply glide with firebase storage
I can get link with this, i tested with realtime database on firebase but i'cant use link as a String.but when i write like Glide.with(this).load("link").into(imageView);
public void run() {...
1
vote
2
answers
2k
views
Displaying .avif images on versions lower than android 12
Im wondering whether there is a library or a way to display .avif images on android versions lower than 12, since avif is supported from android 12+.
I tried using Glide and Picasso, but it just ...