Programing

오류 ITMS-90717 :“잘못된 앱 스토어 아이콘”

lottogame 2020. 6. 18. 07:50
반응형

오류 ITMS-90717 :“잘못된 앱 스토어 아이콘”


앱을 제출하려고 할 때 Itunes Connect다음 오류가 발생했습니다.

iTunes Store Operation Failed

Error ITMS-90717: "Invalid App Store Icon. The App Store Icon in the asset catalog in 'YourApp.app' can't be transparent nor contain an alpha channel."

ITMS-90717 오류투명성이없는 파일을 제출했는지 확인했습니다. 에 오류가 계속 제출되었습니다 iTunes Connect.


아래 솔루션이 나를 위해 일했습니다.

  1. 미리보기 앱에서 App Store 아이콘 (1024 * 1024)을 클릭하여 엽니 다.
  2. 알파 채널 을 선택 해제하여 내보내십시오 .
  3. 현재 App Store 아이콘을 새로 내 보낸 아이콘 이미지로 바꿉니다.
  4. 확인 및 업로드

참고 : Mac OS High Sierra에서는 작동하지 않습니다. 알파없이 내보내거나 이미지 편집 응용 프로그램 중 하나를 사용하거나 아래의 다른 솔루션을 시도하려면 낮은 버전을 사용해보십시오.

대안 : (Sierra 또는 High Sierra 및 Ionic 사용)

  1. App Store 아이콘을 복사하여 바탕 화면에 붙여 넣습니다.
  2. 이미지를 엽니 다. 파일 메뉴-> 중복을 클릭하십시오.
  3. 알파 채널 을 선택 취소하여 저장하십시오 .
  4. 현재 App Store 아이콘을이 아이콘으로 바꿉니다.
  5. 확인 및 업로드

여기에 이미지 설명을 입력하십시오


나는 같은 문제에 직면했고 Shamsudheen TK가 제공 한 솔루션으로 해결할 수 없었습니다. 소스 아이콘에 투명도가 전혀 없더라도 이온은 어떻게 든 아이콘에 투명성을 추가했습니다. 결국 나는 그것을 해결 할 수있었습니다.

imagemagick (MacOS) 설치 :

brew install imagemagick

리소스 폴더의 모든 이미지에서 알파 채널을 제거하십시오.

./resources/ -name "* .png"찾기 -exec 변환 "{}"-알파 off "{}"\;


High Sierra에서 나를 위해 일한 솔루션이 있습니다.

  1. Preview앱 (기본 OSX 이미지 뷰어) 에서 App Store 아이콘 (1024 * 1024)을 엽니 다 .
  2. File메뉴 표시 줄에서 메뉴를 클릭 하고을 선택하십시오 Export. 스크린 샷보기
  3. Uncheck Alpha, select where you would like to export the image and click on the Save button. view screenshot
  4. Replace the current App Store icon with the newly exported icon image.
  5. Validate and upload.

Even the .png file without transparency the error persists.

The solution was to change the .png file to a .jpg file.

여기에 이미지 설명을 입력하십시오


If showing this error for ionic3 project when you upload to iTunes Connect, please check this ANSWER

This is my project error when I try to vilidated. 여기에 이미지 설명을 입력하십시오

Finally follow this ANSWER, error solved. 여기에 이미지 설명을 입력하십시오


An error message itself says:

"Invalid App Store Icon. The App Store Icon in the asset catalog in 'YourApp.app' can't be transparent nor contain an alpha channel."

All app icon must be square without transparency or semi transparent (alpha value != 1.0).

Hint: App icon may have rounded corners. (Share your app icons here)

Here is Apple guidelines for App Icon - Human Interface


Whatever way you try above you need to test it by upload it to app connect like me to make sure it works and save your valuable time

여기에 이미지 설명을 입력하십시오

여기에 이미지 설명을 입력하십시오


Use Alpha Channel Remover. It lets you drag icons into the app and it'll remove transparency.

Download it from here: http://alphachannelremover.blogspot.com

Update: this is not my site


I tried several of the things mentioned in this post (besides swapping to a .jpg) with no success. I solved it by opening the file in photoshop and using 'export to web'. Within that process/window is a checkbox for transparency.


I had this problem and it was because my app store icon wasn't explicitly listed in my config.xml. Once I added the line

<icon height="1024" src="www/res/icon/ios/icon-1024.png" width="1024" />,

cordova copied it over correctly without adding an alpha channel.


changed the icon from png format to gpg and everything went well.


I was able to get around the Mac Sierra OS issue by duplicating the file, dragging the new file onto my desktop, open in preview, then click the export option (in the File menu) , then the option to save it without “alpha” comes up

참고URL : https://stackoverflow.com/questions/46585809/error-itms-90717-invalid-app-store-icon

반응형