Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Max image size on Android device

I am porting an existing game from iOS to Android, and would like to know if there's a size limit for PNG images? On old iOS devices, the texture atlas size cannot exceed 1024 x 1024 pixels. Does a similar limitation exist for Android devices?

Thanks.

like image 963
tomas Avatar asked Nov 17 '25 12:11

tomas


1 Answers

In android you can use atlas bigger, but I recommend to you use only sizes based on 2; 1024 x 1024; 2048 x 2048, etc. Sometimes Android fail when use custom sizes.

like image 86
vgonisanz Avatar answered Nov 20 '25 03:11

vgonisanz