When I tried to load my .apk into Google Play - I received the message " Upload failed - You need to check the icon inside your APK because it is not valid"
I solved this problem by deleting four folders which were inside objects > res . These folders were:
drawable-hdpi :: drawable-ldpi :: drawable-mdpi :: drawable-xhdpi and each contained a low-res icon.
Thus the only icon "launcher" icon left was the one in objects > res > drawable. This was 512x512 and met Google's standards.
The reason I had these four folders with low-res icons is because that approach is recommended in
The Basic4Android book (page 184 "Prescribed Resolutions").
Do I still need these low-res icons?
I solved this problem by deleting four folders which were inside objects > res . These folders were:
drawable-hdpi :: drawable-ldpi :: drawable-mdpi :: drawable-xhdpi and each contained a low-res icon.
Thus the only icon "launcher" icon left was the one in objects > res > drawable. This was 512x512 and met Google's standards.
The reason I had these four folders with low-res icons is because that approach is recommended in
The Basic4Android book (page 184 "Prescribed Resolutions").
Do I still need these low-res icons?