<!--
{
  "availability" : [
    "iOS: 14.0.0 -",
    "iPadOS: 14.0.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 7.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "BundleResources",
  "identifier" : "/documentation/BundleResources/Information-Property-List/NSLocationDefaultAccuracyReduced",
  "metadataVersion" : "0.1.0",
  "role" : "Property List Key",
  "symbol" : {
    "kind" : "Property List Key",
    "modules" : [
      "Bundle Resources"
    ],
    "preciseIdentifier" : "plist:Information_Property_List.NSLocationDefaultAccuracyReduced"
  },
  "title" : "NSLocationDefaultAccuracyReduced"
}
-->

# NSLocationDefaultAccuracyReduced

A Boolean value that indicates whether the app requests reduced location accuracy by default.

## Discussion

Include this key in your information property list to set your app’s default behavior for location accuracy when it calls the Core Location framework. Set the key value to `true` to prompt the user for reduced accuracy by default; set it to `false` to prompt for full location accuracy. If you don’t include that key in your `Info.plist`, that’s equivalent to setting it to `false`.

Include the key pair in your `Info.plist` file as shown:

```xml
<!-- Info.plist -->
<key>NSLocationDefaultAccuracyReduced</key>
<true/>
```

When this key is set to `true`, all Core Location services (location updates, visit monitoring, significant location change, fence monitoring) receive service at the reduced-accuracy service level.  Users will see that your app is asking for reduced accuracy because the location authorization prompt will show a map with an approximate location, and your app will have the Precise Location toggled off in Settings > Privacy > Location Services . These indicators of an app’s improved privacy are ones that users may value.

If you want to leverage the reduced-accuracy feature to improve privacy in a particular operation without setting this key, use the <doc://com.apple.documentation/documentation/CoreLocation/CLLocationManager/desiredAccuracy> constant <doc://com.apple.documentation/documentation/CoreLocation/kCLLocationAccuracyReduced>. This constant causes <doc://com.apple.documentation/documentation/CoreLocation/CLLocationManager/startUpdatingLocation()> to deliver results as if the app were authorized for approximate location until you change the <doc://com.apple.documentation/documentation/CoreLocation/CLLocationManager/desiredAccuracy> constant again.

Setting [`NSLocationDefaultAccuracyReduced`](/documentation/BundleResources/Information-Property-List/NSLocationDefaultAccuracyReduced) determines the default type of authorization your app gets, but users can override it any time in Settings. Users always control the level of location accuracy they want to share, and can change precision settings in Settings > Privacy > Location Services by selecting Precise Location for your app.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)