I have an android application I which I need to load google maps in two different activities.
How to use two different google map keys for each activity. Is it even possible?
Earlier I had only one API key for both activities, hence I had placed the key in meta-data in AndoridManifest.xml
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="@string/GOOGLE_MAP_KEY" />
But since I now have two different key, how to handle two separate meta-data in AndroidManifest. Since, we cannot place two meta-data. How to handle the same?