Submitting app to app store error

前端 未结 1 1987
谎友^
谎友^ 2021-01-25 13:50

When I submit my app to AppStore, I get this error:

ERROR ITMS-90149: \"This bundle is invalid. The value of the CFBundleDocumentTypes key in the Info.pli

1条回答
  •  离开以前
    2021-01-25 14:26

    Your doesn't respect the format for the diferents keys.

    
       CFBundleTypeName
       My File Format
       CFBundleTypeIconFiles
           
               MySmallIcon.png
               MyLargeIcon.png
           
       LSItemContentTypes
           
               com.example.myformat
           
       LSHandlerRank
       Owner
    
    

    https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/RegisteringtheFileTypesYourAppSupports.html

    0 讨论(0)
提交回复
热议问题