clark
06/30/2022, 2:31 PMPodfile
in my ios
directory does not specify any pod dependencies. In my shared build.gradle.kts
I specify pod("FirebaseAuth", "~> 8.14.0")
because it seems that that is the version being used by GitLive Firebase Kotlin SDK in v1.6.10 (link for reference).
When I don't include that pod in my build.gradle file, and I try to build for iOS, I get:
ld: framework not found FirebaseAuth
When I do include it and try to build for iOS, I get:
e: Compilation failed: Linking globals named 'kniprot_cocoapods_FirebaseAuth0': symbol multiply defined!
Any further guidance on how you solved this issue would be greatly appreciated!