Reputation: 4259
I want to implement image effects in my project. So I am trying to implement CREATIVE SDK for this image effects.
https://creativesdk.adobe.com/docs/ios/#/articles/imageeditor/index.html
I have completed all steps which is mentioned in this above document. Also, I have take care of Other Linker Flags, Frameworks, Path of Frameworks and all other thigs. But Still Getting Linker error.
Look forward to hearing your responses!
Upvotes: 0
Views: 281
Reputation: 441
Ensure that in project target - on your MAC/ Local Device folder, the required files are there. The problem you are facing is that Xcode is unable to link the _AdobeAuthManagerLoggedOutNotification.
Also make ensure that step 3, 4 are exclusively taken care of during installation.
Copy resources Make sure AdobeCreativeSDKImageResources.bundle is included in your target's "Copy Bundle Resources" build phase.
Add linker flags
Update your target's (or project's) build settings to include the following "Other Linker Flags": -ObjC -all_load
the order in step 4 is really important.
Upvotes: 1