0

How can I integrate Creative SDK Image component in swift? I followed all step given by "Using the Image Editing Component - Adobe".

And I also import "<AdobeCreativeSDKImage/AdobeCreativeSDKImage.h>" in "Bridging-Header.h" , But when I import Adobecreativesdkimage in AppDelegate it gives me error like "Framework not found".

Moin Shirazi
  • 4,372
  • 2
  • 26
  • 38
Mahipalsinh
  • 123
  • 7

2 Answers2

1

Try copying the framework into your project folder, import the framework from this location, then check the Framework Search Paths setting in the Search Paths section under Build Settings. The values you want are:

$(inherited)
$(PROJECT_DIR)/AdobeCreativeSDKDynamicFrameworks
$(PROJECT_DIR)

If this doesn't work, verify your headers are imported from [].framework/Versions/A/Headers.

These steps helped fix our first projects using the CreativeSDKs where we followed the documented steps to the letter.

Nathan Tuggy
  • 2,237
  • 27
  • 30
  • 38
Rhouck
  • 11
  • 4
0

Make sure the framework search path points to the CSDK Frameworks folder. If that does not work let me know.

possen
  • 8,596
  • 2
  • 39
  • 48