Pb lors de la mise en validation

Bonjour à  tous,


 


merci pour votre aide


 


depuis ce matin je galère pour proposer mon appli...


 


A chaque fois que je clique sur "soumettre", j'ai ce message  et je ne comprend pas comment le corriger :


 


Le fichier Info.plist de l'app ne doit pas contenir la valeur MKDirectionsModeRideShare pour la clé MKDirectionsApplicationSupportedModes. Pour plus d'informations, consultez le document Référence sur les clés de la liste des propriétés d'informations.


Pour configurer cette app en tant qu'app iOS de routage, allez dans Mes apps sur iTunes Connect et chargez un fichier de couverture géographique sur la page Version de l'app.


 


merci pour votre aide


Réponses

  • Qu'as-tu dans ton Info.plist concernant les valeurs de MKDirectionsApplicationSupportedModes ?


  • voila mon fichier :


     


    <?xml version="1.0" encoding="UTF-8"?>


    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">


    <plist version="1.0">


    <dict>


    <key>CFBundleDevelopmentRegion</key>


    <string>en</string>


    <key>CFBundleDocumentTypes</key>


    <array>


    <dict>


    <key>CFBundleTypeName</key>


    <string>MKDirectionsRequest</string>


    <key>LSItemContentTypes</key>


    <array>


    <string>com.apple.maps.directionsrequest</string>


    </array>


    </dict>


    </array>


    <key>CFBundleExecutable</key>


    <string>$(EXECUTABLE_NAME)</string>


    <key>CFBundleIdentifier</key>


    <string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>


    <key>CFBundleInfoDictionaryVersion</key>


    <string>6.0</string>


    <key>CFBundleName</key>


    <string>$(PRODUCT_NAME)</string>


    <key>CFBundlePackageType</key>


    <string>APPL</string>


    <key>CFBundleShortVersionString</key>


    <string>1.0</string>


    <key>CFBundleVersion</key>


    <string>3</string>


    <key>LSRequiresIPhoneOS</key>


    <true/>


    <key>MKDirectionsApplicationSupportedModes</key>


    <array>


    <string>MKDirectionsModeBike</string>


    <string>MKDirectionsModeBus</string>


    <string>MKDirectionsModeCar</string>


    <string>MKDirectionsModeFerry</string>


    <string>MKDirectionsModeOther</string>


    <string>MKDirectionsModePedestrian</string>


    <string>MKDirectionsModePlane</string>


    <string>MKDirectionsModeRideShare</string>


    <string>MKDirectionsModeStreetCar</string>


    <string>MKDirectionsModeSubway</string>


    <string>MKDirectionsModeTaxi</string>


    <string>MKDirectionsModeTrain</string>


    </array>


    <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>


    <string>Use to locate your phone</string>


    <key>NSLocationAlwaysUsageDescription</key>


    <string>Use to locate your phone</string>


    <key>NSLocationUsageDescription</key>


    <string>Use to locate your phone</string>


    <key>NSLocationWhenInUseUsageDescription</key>


    <string>Use to locate your phone</string>


    <key>UIBackgroundModes</key>


    <array>


    <string>location</string>


    </array>


    <key>UIFileSharingEnabled</key>


    <true/>


    <key>UILaunchStoryboardName</key>


    <string>LaunchScreen</string>


    <key>UIMainStoryboardFile</key>


    <string>Main</string>


    <key>UIRequiredDeviceCapabilities</key>


    <array>


    <string>armv7</string>


    </array>


    <key>UISupportedInterfaceOrientations</key>


    <array>


    <string>UIInterfaceOrientationPortrait</string>


    </array>


    </dict>


    </plist>


     

    A priori il y a ça :

    <key>MKDirectionsApplicationSupportedModes</key>

    <array>


    <string>MKDirectionsModeBike</string>


    <string>MKDirectionsModeBus</string>


    <string>MKDirectionsModeCar</string>


    <string>MKDirectionsModeFerry</string>


    <string>MKDirectionsModeOther</string>


    <string>MKDirectionsModePedestrian</string>


    <string>MKDirectionsModePlane</string>


    <string>MKDirectionsModeRideShare</string>


    <string>MKDirectionsModeStreetCar</string>


    <string>MKDirectionsModeSubway</string>


    <string>MKDirectionsModeTaxi</string>


    <string>MKDirectionsModeTrain</string>


    </array>


     


    :/


  • Bon en fait j'avais les yeux dans le brouillard... N'utilisant pas de routine, il m'a simplement fallut supprimer les valeurs dans le XML...


     


    Erreur de débutant fatigué ^^


Connectez-vous ou Inscrivez-vous pour répondre.