I am working on an app whose splashscreen would be handled dynamically. Thing is, there is only one background image we can upload on the server, so on the server side I need to prepare this image to fit with the different kinds of devices there are.
I can't seem to find an accurate list of image resolutions (in px) that would cover more or less all the Android devices (resolution generally seem very low compared to what I have for iPhones for example, and usually don't include tablets).
Does anyone have this information so I could set the server to generate different resolutions from the unique picture I upload and then I could retrieve whatever fits with the device I am currently working on (by passing relevant information about the size)?
Thanks in advance.
From your side is it possible ?
1.) first get the device size and make the server call , pass device type/size/flag or some identifier.
2.) pass some identifier parameter from your side to server side which recognize your image according to the device.
3.) server side side set same more than one image.
4.) set the response according your device size.