info.plistを下記の通り修正する。
この場合、TARGETS -> infoを修正せずに、BundleName-info.plistを直接修正すること。
TARGETS -> info を修正すると、Document Typeの修正箇所が分かりづらいため、BundleName-info.plistを直接開いてplist形式を視認しながら修正すルト分かりやすい。
修正例
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeIconFiles</key>
<array/>
<key>CFBundleTypeName</key>
<string>Text</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
<string>public.plain-text</string>
</array>
</dict>
</array>
関連記事:
https://stackoverflow.com/questions/57183421/warning-itms-90788-incomplete-document-type-configuration
https://developer.apple.com/forums/thread/119803