在打包应用时,Xcode提示:
Invalid Info.plist value. The value for the key 'NSExtensionActivationRule' in bundle ImageSlim.app/Contents/PlugIns/ImageSlimShare.appex is invalid. NSExtensionActivationSupportsImageWithMaxCount must be a positive integer (found a String). (ID: 569e421a-5eee-4d0c-b100-b3074c905660)
报错信息表示ImageSlimShare.appex扩展的Info.plist存在类型错误。
问题代码:
<key>NSExtensionActivationSupportsImageWithMaxCount</key>
<string>10</string>
系统要求的类型为Integer,不是String类型,需要修改为String类型。
NSExtensionActivationRule 是系统解析的谓词规则,类型不对 = 无法解析 = 直接拒绝上架。
