Hi, I’m getting an error: EstimoteSDK/EstimoteSDK.h’ file not found with my DeskObserver app.
I originally had the app working with 2 of my beacons, but when I tried adding in an image for animations I got this error and I’m not sure why adding in an image on the storyboard would cause this issue.
You mean these DeskObserver examples?
https://github.com/Estimote/iOS-Proximity-SDK/tree/master/Examples
These use our new “Estimote Proximity SDK”, not the “Estimote SDK”, so you don’t import EstimoteSDK/EstimoteSDK.h
. The best way to import the Proximity SDK is:
// Obj-C
@import EstimoteProximitySDK;
// Swift
@import EstimoteProximitySDK