Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I download my iOS App Store Icon from my iTunesConnect account?

Can I download the 1024x1024 App Store Icon from my iTunesConnect account portal?

The icon in the portal says "This icon will be used on the App Store. For apps built with Xcode 9 or later, add this icon in the build. For apps built with earlier versions of Xcode, add the icon here."

I'm using XCode 9 now but I lost the original file. I can't find a way to download my icon from the portal.

like image 672
akiraspeirs Avatar asked Oct 11 '17 06:10

akiraspeirs


1 Answers

No direct way to download the app icon, but possible with the developer tools of any browser.

  • Log into https://itunesconnect.apple.com and choose your app.

  • Right click on the app icon under "General App Information" > App Store Icon and Inspect / View source with the developer tools of Chrome/Safari/Firefox

  • Find the <img> tag.

enter image description here

  • Get the URL (both srcor ng-src work. URL should look something like this:

    https://is1-ssl.mzstatic.com/image/thumb/Purple111/v4/eb/d7/18/ebd71843-0f6e-b78c-aa66-8b6c9b4e79e9/mzl.lhnaxkoi.png/150x150bb.jpg

  • Remove the last part: 150x150bb and replace it by 1024x1024

    https://is1-ssl.mzstatic.com/image/thumb/Purple111/v4/eb/d7/18/ebd71843-0f6e-b78c-aa66-8b6c9b4e79e9/mzl.lhnaxkoi.png/1024x1024.jpg

Voila, you got the icon.

like image 141
Max Avatar answered Oct 09 '22 02:10

Max