Flutter Google Maps - Api Key Not Found
I'm trying to set up google maps in flutter following this tutorial, but I'm running into some issues. My app runs but I'm seeing a white screen without anything happening and the
Solution 1:
You used the wrong AndroidManifest.xml. Please use the AndroidManifest.xml in the app directory, not in the debug directory. The debug Manifest is only used for flutter itself. The right one should be in this location:
android\app\src\main\AndroidManifest.xml
For your other error, you might need to import a lower version of geoflutterfire, because there is a version conflict. You imported cloud_firestore: ^1.0.5 but the geofluttefire depends on a newer version.
Post a Comment for "Flutter Google Maps - Api Key Not Found"