I have a published app that is crashing at startup on Android N when the newly introduced Display size OS setting is set to too large a value.
Display size
When I lo
if you use Picasso change to Glide like this.
Remove picasso
Picasso.get().load(Uri.parse("url")).into(imageView)
Change Glide
Glide.with(context).load("url").into(imageView)
More efficient