1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

App store へアップロードで Invalid Binary

Last updated at Posted at 2016-10-11

アップロードは成功(Success)で後に、iTunes connectでステータスが
... has changed to Invalid Binary とになった場合の解決について。

問題の詳細はメールで届くようで、以下のようなメッセージが届きます。

Dear developer,

We have discovered one or more issues with your recent delivery for "My app name". To process your delivery, the following issues must be corrected:

Invalid Icon - The watch application 'myapp.app/Watch/watch.app' contains an icon file 'myapp.app/Watch/watch.app/AppIcon98x98@2x.png' with an alpha channel. Icons should not have an alpha channel.

Once these issues have been corrected, you can then redeliver the corrected binary.

Regards,

The App Store team

このメッセージでは、アイコン画像にアルファチャンネルが含まれていてはいけないというものでした。

その他に私が体験したエラーは、

ユーザーデータへアクセスする目的を記述することが必要

This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.

これは、BaseSDK iOS10から必要になった、カメラやマイク、フォトライブラリなどにアクセスするアプリは、使用目的をinfo.plistに記述しなくてはならないといものに関連したものです。

私は、keyの設定はしていたのですが、value を後で書こうとおもっていてそのまま送信してしまった際にエラーとなりました。

関連URL:
[iOS 10] 各種ユーザーデータへアクセスする目的を記述することが必須になるようです

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?