Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>If it's relevant to what your app is doing I don't think it will be a problem.<br> This is from Apple's <a href="https://developer.apple.com/appstore/resources/approval/guidelines.html" rel="nofollow">App Store Review Guidelines</a>: </p> <blockquote> <p>4.1 Apps that do not notify and obtain user consent before collecting, transmitting, or using location data will be rejected</p> <p>4.2 Apps that use location-based APIs for automatic or autonomous control of vehicles, aircraft, or other devices will be rejected</p> <p>4.3 Apps that use location-based APIs for dispatch, fleet management, or emergency services will be rejected</p> <p>4.4 Location data can only be used when directly relevant to the features and services provided by the app to the user or to support approved advertising uses</p> </blockquote> <p>But pay attention that if you want your app to keep getting location updates even in background, you need to declare this in your plist file, otherwise when the app goes to background you won't be able to get location updates. </p> <blockquote> <p><strong>Declaring Your App’s Supported Background Tasks</strong></p> <p>Support for some types of background execution must be declared in advance by the app that uses them. An app declares support for a service using its Info.plist file. Add the UIBackgroundModes key to your Info.plist file and set its value to an array containing one or </p> <p><strong>location</strong>—The app keeps users informed of their location, even while it is running in the background.</p> </blockquote>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload