Errors when adding Admob

I am trying to add admob to my application. All I do is delete the admob files in my application and I get the following errors:

enter image description here

I had no errors before adding Admob ...

Here is the complete error:

error: unable to open executable '/Users/Library/Developer/Xcode/DerivedData/AppName-/Build/Products/Debug-iphonesimulator/AppName.app/AppName'
0
source share
1 answer

Link all the libraries from this list (step 3):

  • Adsupport
  • AudioToolbox
  • AVFoundation
  • Coregraphics
  • Coretelephony
  • MessageUI
  • StoreKit
  • Systemconfiguration

and add -ObjCto the other linker flags for you target(step 4):
enter image description here

Source: This Guide

0
source

Source: https://habr.com/ru/post/1537353/


All Articles