FirebaseUI-Flutter
FirebaseUI-Flutter copied to clipboard
🐛 Weird circular dependency between `firebase_ui_auth` and `firebase_ui_oauth`
Is there an existing issue for this?
- [X] I have searched the existing issues and found no duplicates.
What plugin is this bug for?
Firebase UI Auth, Firebase UI OAuth
What platform(s) does this bug affect?
Android, iOS, Web, macOS, Linux, Windows
List of dependencies used.
flutter pub deps -s list
Steps to reproduce
I was trying to make a change to the firebase_ui_auth
package to change some colors (that are not configurable and look hideous on dark mode btw, please view #18) , but when I made the change, I noticed that it kept failing on me with
Because firebase_ui_oauth 1.4.17 depends on firebase_ui_auth ^1.12.1 and no versions of firebase_ui_oauth match >1.4.17 <2.0.0, firebase_ui_oauth ^1.4.17 requires firebase_ui_auth from hosted.
So, because award_ace depends on firebase_ui_auth from git which depends on firebase_ui_oauth ^1.4.17, version solving failed.
exit code 1
Upon closer inspection, I noticed that firebase_ui_auth
depends on firebase_ui_oauth: ^1.4.17
and firebase_ui_oauth
depends on firebase_ui_auth: ^1.12.1
. This seems like a weird circular dependency and anti-pattern. To me, having a package depend on one but it depend on the other doesn't seem like a great approach, and causes issue when trying to do what I am trying to do.
Could someone please explain why this is?? Which definitely seems like a bug
Expected Behavior
No circular dependency here. Both should potentially depend on firebase_ui_shared
which they already do.
Actual Behavior
Circular dependency
Additional Information
No response