Sign in with Apple SwiftUI Xcode 12.5.1 not working on one app but exact same code works perfect on another
I am not using pods but rather Swift Package Manager for Firebase. Here is my app file: import SwiftUI import Firebase @main struct two_screensApp: App { init() { FirebaseApp.configure() } var body: some Scene { WindowGroup { ContentView() .environmentObject(UserAuth()) }…