Posts

Showing posts from August, 2018

The following URL schemes found in your app are not in the correct format:

Problem : When i upload my package to itunes it shows the below error "The following URL schemes found in your app are not in the correct formatURL schemes need, to begin with, an alphabetic character and be comprised of alphanumeric characters, the period, the hyphen or the plus sign only. Please see RFC1738" Solution: find in your project using below key CFBundleURLSchemes Then in url strings remove the http:// or https:// and upload it.Then it goes well

Missing Info.plist value. A value for the key 'NSExtensionActivationRule' in bundle appname.app/PlugIns/appExtension.appex is required

Image
Problem: When i tried to archive and upload my app it shows the error below for my sharing extension. "Missing Info.plist value. A value for the key 'NSExtensionActivationRule' in bundle appname.app/PlugIns/appExtension.appex is required" Solution: Add the below keys in your info.plist in the extension. key : NSExtension -> dictionary  key : NSExtensionAttributes -> dictionary key :  NSExtensionActivationRule ->  dictionary key :  NSExtensionActivationRule -> String       value: TRUEPREDICATE key :  NSExtensionActivationSupportsImageWithMaxCount -> Number       value:1 key :  NSExtensionActivationSupportsFileWithMaxCount -> Number       value:1 key :  NSExtensionActivationSupportsMovieWithMaxCount -> Number       value:1 key :  NSExtensionActivationSupportsText -> Boolean       v...