Android Question New recommendation appeared on Play Store: "Improve your app's performance with bitmap image optimization"

Alessandro71

Well-Known Member
Licensed User
Longtime User
while publishing an update to my app, i noticed a new message from the Play Store

>>>>
Improve your app's performance with bitmap image optimization


Your app is manually downloading and decoding images from the network in the following places:
  • Decoded in anywheresoftware.b4a.objects.drawable.CanvasWrapper$BitmapWrapper.Initialize2
    • Downloaded in kotlinx.coroutines.internal.FastServiceLoader.parse
  • Decoded in anywheresoftware.b4a.objects.drawable.CanvasWrapper$BitmapWrapper.initializeSampleImpl
    • Downloaded in kotlinx.coroutines.internal.FastServiceLoader.parse
This can lead to excessive memory usage, slow performance, and app crashes. To reduce memory usage, we recommend using an image-loading library to automatically handle downsampling, caching, and memory management for you.
<<<

i'm not actually explicitly downloading any image, but i have some .jpg images url embedded in a WebView, that loads them
 
Top