I have two KMM projects, both which required some code to be written in swift first and then be used over on the KMM IOs side. One was related to payments and the other firebase. Once these libraries are created and imported into my main project the android part works fine. However, when I try to either assembleXCFramework or build the project in xcode, I get a 'Framework [name of pod lib/swift package] not found' error. I then proceeded to add the following line in the ios portion of my gradle file of the project using the payment lib:
export("ai.vyro:payment:1.0.0")
This changes the error to:-
Following dependencies exported in the debugFramework binary are not specified as API-dependencies of a corresponding source set
Any help would be greatly appreciated. Thanks!