I have downloaded the example application code from github (https://github.com/NordicSemiconductor/IOS-Nordic-Thingy) and am trying to build it using the latest xcode development environment provided by Apple. In the instructions, it says to:
- Create/Update your Podfile with the following contents
target 'YourAppTargetName' do
use_frameworks!
pod 'IOSThingyLibrary', '~> 1.4.0'
end
- Install dependencies
pod install
- Open the newly created
.xcworkspace
- Import the library to any of your classes by using
import IOSThingyLibrary
and begin working on your project
but it is unclear where to perform the above. Is it done in the 'Example' subdirectory or the 'IOS-Nordic-Thingy' or some other directory? Afterwards, the user is instructed to edit the "newly created .xcworkspace" but there appear to be three different files like this located at:
./Example/ThingySDK.xcodeproj/project.xcworkspace
./Example/Pods/Pods.xcodeproj/project.xcworkspace
./Example/ThingySDK.xcworkspace
So I am not sure which is the correct one to open.
I would like to simply recreate the Thingy52 application based on the provided instructions but the instruction seem incomplete or simply not descriptive enough to replace.
Can you provide a more complete set of instructions so that I am able to recreate the App?
Thank you!