Problem
I'm developing a Flutter library that contains iOS native Swift code. This native code needs to call functions from an xcframework.
Currently, I can add the xcframework by manually dragging and dropping the file into Xcode.
However, the xcframework will disapear whenever I run pod install
, forcing me to re-add the xcframework each time.
Question
Is there a way to automatically include the xcframework in my Flutter plugin's iOS code that persists after running pod install
?