iOS Application Setup

iOS Application Settings to enable location services

To use the LumenPath SDK to monitor iBeacon sensors, you must have one of two following keys in the Info.plist file along with a message to inform the users about the use of iBeacons in the application.

<key>NSLocationAlwaysUsageDescription</key>
<string>Your message goes here</string>
<!-- Or -->
<key>NSLocationWhenInUseUsageDescription</key>
<string>Your message goes here</string>

If NSLocationAlwaysUsageDescription is used, your app can receive beacon events even when it is in background.

Setting up Lumenpath iOS SDK

1494 2100
  • Next add the following iOS Frameworks to your project: Foundation.framework, UIKit.framework, MobileCoreServices.framework, SystemConfiguration.framekwork
1790