I have a kmp library that uses a local cocoapod wh...
# ios
k
I have a kmp library that uses a local cocoapod when publishing the kmp library it works fine on android but on ios it requires the cocoapod for the project in which the library is being used. Is it possible to not need the pod in the ios peoject? and include it only in library?
f
Hello, I will say it depends on which iOS library.
But commonly, yeah, it’s required
k
Its a local cocoapod that i have developed
f
So, you need to use the alternative way
Make a xcframework of your pod and embedded it in your Shared code.
k
Nice idea thanks @francois
f
Just take care of the ressources, only the binary is used not the Bundle (if you had one)
👍 1
Goog luck 😄