any idea what would cause `Type 'ComposeView' does...
# multiplatform
b
any idea what would cause
Type 'ComposeView' does not conform to protocol 'UIViewControllerRepresentable'
when I import my shared kotlin library? If I remove the import the error goes away 🤔
similarly it seems to be muxing the App protocol as well somehow and I have to do SwiftUI.App explicitly
s
can I see that part?
b
Copy code
import SwiftUI
import BotStacksSDK

struct ComposeView: UIViewControllerRepresentable {

    func makeUIViewController(context: Context) -> some UIViewController {
        BotStacksNavigationKt.BotStacksNavigation {
            
        }
    }
    
    func updateUIViewController(_ uiViewController: UIViewController, context: Context) {
        
    }
    
}
interestingly enough this only happens when compiling from Android Studio.