Hey! :wave: What’s the meaning of an error during ...
# multiplatform
n
Hey! 👋 What’s the meaning of an error during the iOS build that says “ld: framework not found X”? It’s complaining about a library I’m using that is supposed to be working on iOS.
b
Out of curiosity are you using cocoapods?
n
Yes
b
Would you mind sharing your build.gradle? I'm using cocoapods too and I'm wondering if I set it up right
n
It’s a multimodule project so I have a lot of gradle files, but here’s one of them:
b
Looks good to me, I haven't seen that "Libraries" style before. Did you make a file that stores all the artifact strings and their versions?
Thanks for sharing btw
n
Yes, you can search for it, it’s called
buildSrc
For info: My error came from missing
use_frameworks!
on the PodFile.
b
Gotcha, glad its solved