Hello everyone, Is it possible to obtain the lis...
# multiplatform
m
Hello everyone, Is it possible to obtain the list of cocoapod dependencies from KMM dependencies defined in gradle? We are using https://github.com/GitLiveApp/firebase-kotlin-sdk and the iOS part depends on Firebase Cocoapod dependencies. What I would like to do is to fetch the
pod
dependencies defined in there and export their names and versions. Is that information that is available in the
.klib
artifacts or somewhere else, maybe during the build process?
k
If I remember you correct, then No. Cocoapods is an 3d party dependency menegment tool. Kotlin publication format doesn't know (and doesn't have to) about that. Developer just should provide a right binary during linking a final app. Usually, authors of kotlin libs dependent on external pods provide the pods in readme.
m
Alright 👍 Thanks @Konstantin Tskhovrebov