Apple rejection because UIBackgroundMode = location

17,101

Solution 1

Sounds like apple's complaint is that your apple think that your app doesn't need to use background location. If what you're trying to do is legitimate - e.g. your user would expect the app to track them in the background and this is a useful thing to them - you could try explaining why location tracking is needed in the review notes.

Solution 2

To resolve you have to add the disclaimer in the App description in Itunes Connect "Continued use of GPS running in the background can dramatically decrease battery life."

Solution 3

I think it is best to address these questions directly to Apple. I hope you did so. They are very good at communication, providing your response is professional and clear. As are your questions.

I find it hard to believe that anyone will be able to help you here.

Edit: Add description to your app. Be clear in your messages to the user and to apple reviewers. It seems to help a lot. Remember, they are people too.

Share:
17,101

Related videos on Youtube

Alexandru Circus
Author by

Alexandru Circus

Software developer

Updated on October 29, 2022

Comments

  • Alexandru Circus
    Alexandru Circus 12 days

    I submitted an app which tracks the user's location (and sends it to the server) at some fixed intervals chosen by the user (5 min, 10 min, 30 min, 1 h). The app should work in background, too (sending the requests) and I have declared it as UIBackgroundMode = location. I am able to send the requests while in background at those fixed intervals. Apple rejected it, suggesting the following:

    We found that your app uses a background mode but does not include functionality that requires that mode to run persistently. This behavior is not in compliance with the App Store Review Guidelines.

    We noticed your app declares support for location in the UIBackgroundModes key in your Info.plist but does not include features that require persistent location.

    It would be appropriate to add features that require persistent use of real-time location updates while the app is in the background or remove the "location" setting from the UIBackgroundModes key. If your application does not require persistent, real-time location updates, we recommend using the significant-change location service or the region monitoring location service.

    For more information on these options, please see the "Starting the Significant-Change Location Service" and "Monitoring Shape-Based Regions" sections in the Location Awareness Programming Guide.

    If you choose to add features that use the Location Background Mode, please include the following battery use disclaimer in your Application Description:

    "Continued use of GPS running in the background can dramatically decrease battery life."

    If I change significant location change and remove UIBackgroundMode key from Info.plist, the app will be killed in background and will wake up only if the event occurs. But I must send the request to server every 5 minutes for example and my app is killed in the background (let's say the user does not move and the event is not trigger = no requests are sent to server).

    • Sulthan
      Sulthan about 10 years
      Maybe you need to update the description and comments for reviewer? It seems to me the app was not well understood.
  • Alexandru Circus
    Alexandru Circus about 10 years
    Thanks, I already told my employer to send them a reply with some questions.
  • Alexandru Circus
    Alexandru Circus about 10 years
    To resolve I think I just need to add the disclaimer in the App description "Continued use of GPS running in the background can dramatically decrease battery life."
  • Alexandru Circus
    Alexandru Circus about 10 years
    To resolve I think I just need to add the disclaimer in the App description "Continued use of GPS running in the background can dramatically decrease battery life."
  • Manthan
    Manthan almost 9 years
    I have also got the same problem. So did you add this line in your app description and your app was approved?
  • Ronald Randon
    Ronald Randon over 8 years
    I do have the same problem. Were adding the disclaimer in the description helps app to get approved.
  • GregJaskiewicz over 8 years
    Cool Manhatan, good to hear. If anyone found my answer helpful, please mark it as so.
  • NaXir over 7 years
    I got same issue please tell me what to do? Does just adding disclaimer in app description helped with approval?