前提
Swiftでアプリを作っています。先日App Store Connectの審査でアプリがリジェクトされました。
リジェクトされた理由は以下の通りです。
We were unable to install the app on iPad. The UIRequiredDeviceCapabilities key in the Info.plist is set in such a way that the app will not install on an iPad .
解決方法(Next Steps)として以下のような記述がありました。
To resolve this issue, please check the UIRequiredDeviceCapabilities key to verify that it contains only the attributes required for your app features or the attributes that must not be present on the device. Attributes specified by a dictionary should be set to true if they are required and false if they must not be present on the device.
実機iPadは持っていないので動作確認できていないのですが、シミュレーターではiPadでも問題なく動作しています。
またinfo.plistは何もいじっていません。UIRequiredDeviceCapabilitiesのキー値は以下です。
<key>UIRequiredDeviceCapabilities</key> <array> <string>armv7</string> </array>
この問題を解決するには具体的に何をすれば良いのでしょうか?
参考リンク:https://developer.apple.com/library/content/qa/qa1397/_index.html

回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。