Mathias Åberg
Mathias Åberg

Reputation: 99

Ensembles Idiomatic app not working

Is the Ensembles example app, Idiomatic, supposed to work without having to configure it or link it to libraries like dropbox? When trying to start it I get this :

[...] Ensembles Basic Support/Ensembles 2.2/Source Code/Ensembles/Framework/Extensions/
CDEDropboxSyncCloudFileSystem.h:13:9: 'Dropbox/Dropbox.h' file not found

Does anyone know how to get it working? (I'm using Ensembles 2.2)

Upvotes: 0

Views: 209

Answers (1)

Drew McCormack
Drew McCormack

Reputation: 3592

It seems when I was adding the DropboxSync framework, I accidentally included a full path, rather than a relative path, in the frameworks search path.

You can easily fix it by selecting the Idiomatic iOS target, going to Build Settings, locating the framework search path setting. Change it to $(SRCROOT)/../../Vendor/DropboxSyncSDK/iOS

enter image description here

Upvotes: 1

Related Questions