Reputation: 205
ERROR ITMS-900158:"The following URL scheme found in your app are not in the correct format: here. URL 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" for more detail.
Please help me with this issue as I'm not getting where I'm going wrong.
Upvotes: 0
Views: 6572
Reputation: 205
i Found my answer
i was just making mistake by entering CFBundleURLSchemes values in an array it should be string
correct format : [Please refer the image url for the correction made] (https://i.sstatic.net/oT5k7.png)
Upvotes: 7
Reputation: 855
URLScheme which represent the protocols you app responds too (like your-app://) and are defined in your Plist file under the key CFBundleURLTypes
should not be an URL
Upvotes: 0