IndoorAtlas GroundSage iOS SDK
This is the documentation of IndoorAtlas GroundSage iOS SDK.
Create and maintain a safe environment for continuous business operations by using the ultimate crowd density monitoring system.
System requirement
Xcode 11 or above with minimum support iOS 11.0 or above
How to Get started
- Run
pod init
in your project root directory - Open
Podfile
- Add following two sources under
#platform :ios, '11.0'
source 'https://dl.cloudsmith.io/public/indooratlas/groundsage-sdk-ios/cocoapods/index.git'
source 'https://github.com/CocoaPods/Specs.git'
- Add
pod 'GroundSageSDK', '1.0.5'
to your target
- add below script in end of Podfile
post_install do |installer|
installer.pods_project.targets.each do |target|
if ['Apollo'].include? target.name
target.build_configurations.each do |config|
config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
end
end
end
end
- Run
pod install
and a workspace file will be generated. - Open
<projectName>.xcworkspace
- Build and run 🚀