Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
30 views

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 ...
avalancha's user avatar
  • 1,841
0 votes
1 answer
4k views

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 ...
Marline's user avatar
  • 279
0 votes
0 answers
24 views

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(...
Yanir Aton's user avatar
0 votes
1 answer
112 views

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 ...
karthik vs's user avatar
1 vote
0 answers
61 views

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 ...
StainlessSteelRat's user avatar
0 votes
0 answers
27 views

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 ...
Fabian Speck's user avatar
0 votes
0 answers
48 views

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 ...
Taha Kirmani's user avatar
0 votes
0 answers
44 views

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 ...
Naresh Pradhan's user avatar
0 votes
1 answer
68 views

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 ...
Steven shih's user avatar
1 vote
0 answers
89 views

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 ...
koma222's user avatar
  • 23
1 vote
0 answers
44 views

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 ...
Perihan Mirkelam's user avatar
0 votes
1 answer
120 views

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(...
Emanuel's user avatar
  • 922
-1 votes
1 answer
205 views

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 ...
user1506104's user avatar
  • 7,126
0 votes
1 answer
36 views

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 ...
D.Sanxhez's user avatar
  • 137
4 votes
2 answers
855 views

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 ...
Andrey Zyritel's user avatar
1 vote
0 answers
643 views

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) { ...
Christian Neri's user avatar
1 vote
1 answer
136 views

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 ...
LAKSHYA AGARWAL's user avatar
0 votes
0 answers
265 views

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/...
Mohammad Kazemian's user avatar
1 vote
3 answers
992 views

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 ...
Shivanshu Raj's user avatar
0 votes
0 answers
137 views

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 ...
Guvanch Rahmankulov's user avatar
3 votes
0 answers
243 views

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 ...
Pradip Tilala's user avatar
1 vote
1 answer
724 views

I am trying to inject an OkHttpClient into an AppGlideModule using Hilt. My network module provides the http client: @Singleton @Provides fun provideOkHttpClient( tokenInterceptor: ...
lostintranslation's user avatar
0 votes
0 answers
31 views

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....
Youth Hacker's user avatar
0 votes
2 answers
59 views

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() {...
Kenan's user avatar
  • 1
1 vote
2 answers
2k views

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 ...
Dazai's user avatar
  • 27

1
2 3 4 5
47