在 iTunes 上提交申请时出现错误 ITMS-900158
ERROR ITMS-900158 while submitting application on itunes
错误 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" 了解更多详情。
请帮我解决这个问题,因为我没有弄错。
URL表示您的应用也响应的协议的方案(如您的应用://)并且在您的 Plist 文件中定义在密钥 CFBundleURLTypes
下不应是 URL
我找到了答案
我只是在数组中输入 CFBundleURLSchemes 值时出错,它应该是字符串
正确格式:
[请参考图片 url 进行更正]
(http://i.stack.imgur.com/oT5k7.png)
错误 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" 了解更多详情。
请帮我解决这个问题,因为我没有弄错。
URL表示您的应用也响应的协议的方案(如您的应用://)并且在您的 Plist 文件中定义在密钥 CFBundleURLTypes
下不应是 URL
我找到了答案
我只是在数组中输入 CFBundleURLSchemes 值时出错,它应该是字符串
正确格式: [请参考图片 url 进行更正] (http://i.stack.imgur.com/oT5k7.png)