Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error ITMS-90362 -- Share Extension Xcode ios

I am trying to build an share extension, But during upload i got this error

Error ITMS -90362"Invalid info.plist value. The Value for the key 'NSExtensionActivationRule' in bundle myapp.app/Plugins/myapp.appex is invalid

like image 794
Hitu Bansal Avatar asked Jun 23 '15 11:06

Hitu Bansal


Video Answer


1 Answers

You are getting two messages I can see the problem for the second one. The Bundle Version needs to match in both targets. You have Bundle Version set to 0.0.6 in the main target and it's set to 1 in the Extension target. Change that to 0.0.6. "Build Version String, short" doesn't matter.

You'll need to show the values of the NSExtension key in the Extension target to fix the first message.

like image 142
Dan Loughney Avatar answered Oct 26 '22 11:10

Dan Loughney