Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uploading screenshots error to the developer console

I get the following error when trying to upload an image as a screenshot to my developer console:

"You need to check that your screenshot image is a valid image."

  1. I took a screenshot from my cell and uploaded it as a screenshot to the developer console and it worked.
  2. Then I just added a line on top of the image using paint.
  3. Tried to upload the modified image to the developer console but it failed.

My images are480wx800h PNG formatted images so it should be okay. (both the original and the modified bitmap).

Could any1 tell me how to solve this? I want to upload a sample image from my app and add some instructions written on top of the image. But i can't do it.

like image 589
ZiviMagic Avatar asked Dec 10 '12 16:12

ZiviMagic


2 Answers

Solved:

apparently when you save a PNG using paint it changes the bit depth to 32 instead of 24 and it adds transparency to the image which is forbidden by the Google play rules. So saving it as JPEG solved the problem

like image 152
ZiviMagic Avatar answered Oct 02 '22 12:10

ZiviMagic


Max aspect ratio error

It gave me error when i tried to upload IDE generated screen shot of wrong aspect ratio

i.e, i have taken Pixel screen shot from Android Studio IDE, and tried to upload directly to Playstore Store listing , it gave me error because the screen shot dimensions were of 1226 X 2502, It began to upload when i changed them to 1226 X 2452 (aspect ratio 1:2)

I hope Android Studio IDE will fix this in future.

like image 20
Jayakrishnan Avatar answered Oct 02 '22 13:10

Jayakrishnan