3

There was a similar question, but the answer is no

I use appodeal-ios-sdk-mobile-adapter. I want to add them to your projects without copying each. enter image description here in the Link Binary with Libraries framework added But I get:

ld: framework not found GoogleMobileAds

clang: error: linker command failed with exit code 1 (use -v to see invocation)

Community
  • 1
  • 1
Fabio
  • 671
  • 1
  • 6
  • 14

2 Answers2

2

In order to add the framework to your project without copying proeta folder, drag the folder using the (Create groups), and add the path where you have a set framework -> "Build Setting -> Library Search Paths and Framework Search Paths

/Users/username/Framework/AppodealAdapters/**

Fabio
  • 671
  • 1
  • 6
  • 14
0

Well you can open the system directory where all the frameworks are present that is in the system folder where all the frameworks are installed

Hit Shift+Command+G

and use the below address

/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk/System/Library/Frameworks

Once in the directory copy the framework which you want to use. Take care to not mess around other frameworks in this directory.

Once the frameworks are copied into this directory you can add them to your project just like you include a regular system defined framework.

Try it out it works for me. I am using XCode 7.3.

Md. Ibrahim Hassan
  • 5,359
  • 1
  • 25
  • 45
  • Perhaps it is also a solution. But I need to be in a framework on a disk folder, the folder is updated with github. I'm use **create folder references**, but again I get the same error – Fabio Oct 03 '16 at 22:17
  • Yes the framework needs to be on your disk first, once you have the framework on your disk then you can follow the above method. Download the framework from github as a zip and continue. In the project navigator, select your project. – Md. Ibrahim Hassan Oct 04 '16 at 04:51