I am using share extension it is working fine but i am gettig error in making testflight.Getting NSExtensionPointidentifier missing infor.plist value......... But i have added

Also i have added all these to info.plist


<key>NSExtensionActivationRule</key>

<dict>

<key>NSExtensionActivationSupportsAttachmentsWithMaxCount</key>

<integer>1</integer>

<key>NSExtensionActivationSupportsAttachmentsWithMinCount

</key>

<integer>1</integer>

<key>NSExtensionActivationSupportsFileWithMaxCount</key>

<integer>1</integer>

<key>NSExtensionActivationSupportsImageWithMaxCount</key>

<integer>1</integer>

<key>NSExtensionActivationSupportsMovieWithMaxCount</key>

<integer>1</integer>

<key>NSExtensionActivationSupportsText</key>

<integer>1</integer>

<key>NSExtensionActivationSupportsWebURLWithMaxCount</key>

<integer>1</integer>

</dict>

<key>NSExtensionAttributes</key>

<dict>

<key>NSExtensionActivationRule</key>

<string>SUBQUERY (

extensionItems,

$extensionItem,

SUBQUERY (

$extensionItem.attachments,

$attachment,

(

ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "com.adobe.pdf"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.image"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.plain-text"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.png"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.jpeg"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "public.jpeg-2000"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "com.compuserve.gif"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "com.microsoft.bmp"

|| ANY $attachment.registeredTypeIdentifiers UTI-CONFORMS-TO "com.microsoft.powerpoint.ppt"

)

).@count == 1

).@count == 1

</string>

<key>NSExtensionPointIdentifier</key>

<string>com.apple.share-services</string>


</dict>






Still getting above error...pls anyonce help

Replies

Assuming this is for iOS, see if Table 2 'Photo Editing' helps: https://developer.apple.com/library/content/documentation/General/Reference/InfoPlistKeyReference/Articles/AppExtensionKeys.html#//apple_ref/doc/uid/TP40014212-SW15


If you change the plist, be sure to option-clean the build folder before making another try.