0

I'm trying to import Appodeal to my React Native iOS app, I followed this Appodeal XCode Tutorial

So I met an error in linking, and found some existing ways to solve it, but none of which did help me.

ERROR:

enter image description here

So here is my "Link Binary With Libraries" list:

enter image description here

And here is my Compile Sources & Target Membership:

enter image description here

Bitcode disabled:

enter image description here

Other Linker Flags:

enter image description here

Architectures:

enter image description here

Appodeal dependencies in the root of my project:

enter image description here

And that's all I've changed, so any ideas on where did I go wrong?

halfer
  • 19,824
  • 17
  • 99
  • 186
animekun
  • 1,789
  • 4
  • 28
  • 45

1 Answers1

1

I should've added CoreBluetooth.Framework (they missed it probably in the tutorial or whatever), now it's nice.

Found my answer here: groups.google.com/forum/#!category-topic/google-admob-ads-sdk/… ( Thanks Jaap ! )

And also I added libs with this instructions by SleepyViking from (https://forums.developer.apple.com/thread/4572):

  1. Go to Build Phases >Link Binary with Librairies > + > Add other

  2. Once in the file selection window do "CMD"+Shift+G (Go to folder) and type /usr/lib/

  3. From /user/lib you can add : libz.dylib and more...

  4. Compile and have fun

animekun
  • 1,789
  • 4
  • 28
  • 45
  • anyway guys, it didn't work for me :( I gave up several days later in infinite tryings to make things work.. – animekun Aug 30 '16 at 23:03