Submitting app to app store error

前端 未结 1 1986
谎友^
谎友^ 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.

    <dict>
       <key>CFBundleTypeName</key>
       <string>My File Format</string>
       <key>CFBundleTypeIconFiles</key>
           <array>
               <string>MySmallIcon.png</string>
               <string>MyLargeIcon.png</string>
           </array>
       <key>LSItemContentTypes</key>
           <array>
               <string>com.example.myformat</string>
           </array>
       <key>LSHandlerRank</key>
       <string>Owner</string>
    </dict>
    

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

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