Meet Doshi
Meet Doshi

Reputation: 4259

Linker error comes when implement Creative SDK for Image Effects in ios

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.

enter image description here

Look forward to hearing your responses!

Upvotes: 0

Views: 281

Answers (1)

S.Jain
S.Jain

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.

  1. Copy resources Make sure AdobeCreativeSDKImageResources.bundle is included in your target's "Copy Bundle Resources" build phase.

  2. 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

Related Questions