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
- Download the iOS SDK (https://bitbucket.org/lumenpath/lumenpath-ios-sdk/downloads/LPSensorLib-v1_0_0.zip)
- Unzip the SDK
- Add the framework to your XCode project.


- Next add the following iOS Frameworks to your project:
Foundation.framework
,UIKit.framework
,MobileCoreServices.framework
,SystemConfiguration.framekwork

Updated less than a minute ago