https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
s

Shawn Tucker

03/03/2021, 2:25 PM
I am getting this issue when trying to build framework for iOS
Copy code
> Task :linkReleaseFrameworkIos
ld: framework not found FirebaseFirestore
It happened when I added gitlive/firebase dependency to my project. I have a second project that have the same dependency and it works. Only difference is that in my other project I have cocoapods plugins. What am I missing?
t

Tijl

03/03/2021, 2:58 PM
make sure your iOS project includes Firestore (of the same version), native dependencies don’t propagate through the kotlin dependency
c

clark

06/27/2022, 5:04 PM
I'm having this same issues trying to add
firebase-kotlin-sdk
and consume it in an iOS app. Getting the error:
Copy code
ld: framework not found FirebaseAuth
Any tips on how to fix this?
So my
Podfile
has:
Copy code
pod 'FirebaseAuth', '~> 8.15.0'
2 Views