Reputation: 550
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 switches to cell data, and everything loads up instantly.
We also have a website. The same users on the same devices (also still on wifi) can load up our website without issue, which calls on the exact same image URL, so apparently it's specific to the Android application and not something like the router blocking/mucking with the connection.
Has anyone else experienced this? I can't even begin to think of what to investigate to resolve this and it's making me very anxious.
I am using:
implementation("com.squareup.okhttp3:okhttp:4.12.0")
//Faster downloading (must be same as glide version number)
implementation 'com.github.bumptech.glide:okhttp3-integration:4.16.0'
//Async url image caching and loading
implementation 'com.github.bumptech.glide:glide:4.16.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.16.0'
//Transforms for glide
implementation 'jp.wasabeef:glide-transformations:4.3.0'
// If you want to use the GPU Filters
implementation 'jp.co.cyberagent.android:gpuimage:2.1.0'
Upvotes: 1
Views: 38