Replies: 3 comments 4 replies
-
Can you show your Package.swift? It sounds like your target doesn't have a dependency on |
Beta Was this translation helpful? Give feedback.
-
That's because we haven't implemented that function yet. Most of the Auth module for Firebase has been contributed by users (e.g., see skiptools/skip-firebase#28). Implementing this yourself would be fairly simple by following the instructions at https://skip.tools/docs/contributing/. If you do get it implemented, please consider filing a pull request. |
Beta Was this translation helpful? Give feedback.
-
ah... I see. I thought I had read that all the FirebaseAuth was implement. I guess not ;) |
Beta Was this translation helpful? Give feedback.
-
Following the instructions on skip.tools I have installed Firebase and skip-firebase in my project. I am trying to make my model for my Firebase users:
#if SKIP
import SkipFirebase
import SkipFirebaseAuth
#else
import Firebase
import FirebaseAuth
#endif
`class AuthViewModel: ObservableObject {
@published var userSession: FirebaseAuth.User? = nil
@published var currentUser: User?
The compiler is complaining about:
I am getting the same unresolved reference on the Android side as well:
It looks like I have the package loaded but it is not being found anywhere. Ideas?
Beta Was this translation helpful? Give feedback.
All reactions