Megan Teahan
01/19/2021, 7:51 PMdataSource
auth
umbrella
The auth module holds a common interface for an auth flow I want apps to follow. Because of issues I was having importing iOS frameworks into Kotlin, I was thinking of just creating a Swift Auth Module (I’m new to iOS development so I apologize if that’s not the right language) that would pull in the Kotlin auth framework and make an iOS implementation of that auth interface.
Then my client would pull in the umbrella framework created and also this Swift Auth module/framework.
Would this potentially collide because the Swift Auth Module is referencing one Kotlin Multiplatform framework and the client is also referencing the Kotlin umbrella framework? Or do people have other recommendations on how to tackle this?