IOS App Submission Routing App

后端 未结 4 1116
梦毁少年i
梦毁少年i 2021-02-07 09:20

I am trying to submit my app for review in Itunes Connect, but when I try to submit it I get an error:

To configure this app as an IOS routing app, upload

相关标签:
4条回答
  • 2021-02-07 09:28

    I just faced this exact issue last week.

    I had accidentally turned on Map capabilities and turned it off later. Like your case, this didn't fix the issue.

    enter image description here

    I believe what fixed it was removing MapKit from here. I was trying other things at the time so try this and if this isn't it then I'll see if something else I changed fix this.

    0 讨论(0)
  • 2021-02-07 09:32

    I figured it out. In my info plist there was a document type name of MKDirectionsRequest. Removing that solved the problem.

    0 讨论(0)
  • 2021-02-07 09:32

    In my info.plist I had to delete two entries:

    1) the document you referenced above - MKDirectionsRequest

    and

    2) MKDirectionsApplicationSupportedModes - MKDirectionsModeCar which is called "Maps routing app supported modes"

    0 讨论(0)
  • 2021-02-07 09:37

    From the apple docs

    (To use the features of the Map Kit framework, you must turn on the Maps capability in your Xcode project.)

    above the entire paragraph.(https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/LocationAwarenessPG/Introduction/Introduction.html#//apple_ref/doc/uid/TP40009497)

    Location-based information consists of two pieces: location services and maps. Location services are provided by the Core Location framework, which defines Objective-C interfaces for obtaining information about the user’s location and heading (the direction in which a device is pointing). Maps are provided by the Map Kit framework, which supports both the display and annotation of maps similar to those found in the Maps app. (To use the features of the Map Kit framework, you must turn on the Maps capability in your Xcode project.) Location services and maps are available on both iOS and OS X.

    Not sure but maybe you only need to turn on mapkit

    0 讨论(0)
提交回复
热议问题