iOS Question WARNING ITMS-90788: "Incomplete Document Type Configuration"

tzfpg

Active Member
Licensed User
Longtime User
Hi,

I facing a problem when upload to AppStore.

My Code :
B4X:
#PlistExtra:<key>CFBundleDocumentTypes</key>
    #PlistExtra:<array><dict><key>CFBundleTypeIconFiles</key><array/>
    #PlistExtra: <key>CFBundleTypeName</key><string>ZIP File</string>
    #PlistExtra:<key>LSItemContentTypes</key><array>
    #PlistExtra:<key>LSHandlerRank</key><string>Alternate</string>
    #PlistExtra:<string>com.pkware.zip-archive</string>
    #PlistExtra:</array></dict></array>

Error Code :
B4X:
<main>  WARN: WARNING ITMS-90788: "Incomplete Document Type Configuration. The CFBundleDocumentTypes dictionary array in the 'com.xxx.xxx' Info.plist should contain an LSHandlerRank value for the CFBundleTypeName 'ZIP File' entry. Refer to https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html#//apple_ref/doc/uid/TP40009249-SW1 for more information on the LSHandlerRank key."

How to solve thgis problem, i had read this post
https://www.b4x.com/android/forum/t...cument-type-configuration.107363/#post-671543

after add
B4X:
#PlistExtra:<key>LSHandlerRank</key><string>Alternate</string>
still facing same problem.

Please help me.
 
Last edited:
Top