NAOSDK is the Polestar indoor location services SDK.
Homepage Repository CocoaPods Objective-C Documentation
pod try NAOSDK
#NAOSDK for iOS - Integration Guide
This page describes how to integrate NAOSDK into your application using CocoaPods
To run the provided sample project (NAODemoApplication), clone or download this repo, and run:
$ cd Example
$ pod install
$ open NAODemoApplication.xcworkspace
#Install
#!bash
$ sudo gem install cocoapods
##Get Started
Creates a Podfile for the current directory if none currently exists. If an XCODEPROJ project file is specified or if there is only a single project file in the current directory, targets will be automatically generated based on targets defined in the project.
#!bash
$ pod init
List the dependencies in Podfile in your Xcode project directory:
#!bash
target 'MyApp' do
pod 'NAOSDK'
end
Now you can install the dependencies in your project:
#!bash
$ pod install
Make sure to always open the Xcode workspace instead of the project file when building your project:
#!bash
$ open App.xcworkspace
Then, configure your Xcode project.