today I linked my project to firebase all the latest versions and when running the emulator getting Note: "uses or overrides a deprecated API." for firebase_auth, firebase_core, flutter_secure_storage, local_auth. What should I do about this?
Asked
Active
Viewed 609 times
0
-
Have a look at this: https://github.com/flutter/flutter/issues/78137#issuecomment-970387592 (might be your case with `local_auth`) – Shourya Shikhar Nov 16 '21 at 15:33
1 Answers
1
Those are warnings from the APIs the plugins are using. Your code should work just fine.

Victor Eronmosele
- 7,040
- 2
- 10
- 33
-
yaa code is working just fine for a time being but will it cause any problem in the future since its showing deprecated API – jasmine Sep 02 '21 at 09:37
-
-
-
No, there's nothing to resolve as the warning is coming from the package itself. Checkout this issue: https://github.com/flutter/flutter/issues/50870 – Victor Eronmosele Sep 02 '21 at 10:31