NAOSDK 4.11.14

NAOSDK 4.11.14

TestsTested
LangLanguage Obj-CObjective C
License Custom
ReleasedLast Release Dec 2023

Maintained by POLESTAR Support.



NAOSDK 4.11.14

  • By
  • Pole Star

#NAOSDK for iOS - Integration Guide
Version
License
Platform

This page describes how to integrate NAOSDK into your application using CocoaPods

Requirements

  • Xcode 7 or higher
  • iOS 9.0 or higher
  • CocoaPods package manager:

Building demo application

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

1- pod init

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

2- Update Podfile

List the dependencies in Podfile in your Xcode project directory:

#!bash

target 'MyApp' do

pod 'NAOSDK'

end

3- pod install

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.