I'm using google_maps_flutter for two flavors (development, qa). I configured AppDelegate.swift for the two flavors with this.
I now need to do those flavors on Android in android/app/src/main/AndroidManifest.xml:
<manifest ...
<application ...
<meta-data android:name="com.google.android.geo.API_KEY"
android:value="YOUR KEY HERE"/>
And in web index.html:
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY"></script>
How would I do both of those?
I do already have android/app/src/dev and android/app/src/qa folders because they have google-services.json flavor configuration files. So maybe another AndroidManifest.xml in those folders? Also would it contain everything that the main one has?
No idea how to do web.