IOS App提交路由应用程序
我正在尝试在Itunes Connect中提交我的应用以供审核,但是当我尝试提交时,我收到错误:
I am trying to submit my app for review in Itunes Connect, but when I try to submit it I get an error:
要将此应用程序配置为IOS路由应用程序,请在iTunes Connect上的我的应用程序中的应用程序版本页面上上载路由应用程序
coverage文件。
要将您的应用配置为IOS路由应用,应用的Info.plist必须
包含MKDirectionsApplicationSupportedModes
键。
所以在我的项目中,在功能中,地图已关闭。我的项目中确实有 MapKit.framework ,因为我确实使用了地图,但是我没有显示路由信息,也没有在我的应用程序中提供它。事实上,我的项目中的这个框架导致了这个ITunes Connect错误,如果是这样,我该怎么做才能修复它。通过修复它,我希望它关闭路由。
So in my project, in the Capabilities, the Maps is turned off. I do have the MapKit.framework in my project, as I do utilize the map, however I do not ever show routing information nor provide it in my app. Is the fact that this framework in my project causing this ITunes Connect error, and if so, how do I go about fixing it. And by fixing it, I want it to turn off routing.
我的应用程序不是为了提供路由信息,也不是要将其设置为iOS路由应用程序。
My app is not made to provide routing information, nor do I want to set it as an iOS routing app.
任何帮助都将不胜感激。
Any help would be appreciated.
我正在使用XCode 6.
I am using XCode 6.
我明白了。在我的信息plist中有一个文档类型名称MKDirectionsRequest。删除它解决了问题。
I figured it out. In my info plist there was a document type name of MKDirectionsRequest. Removing that solved the problem.