Skip to main content

How to Add Map API key for Address

  1. Go to Google Cloud Platform. Click here
  2. Click on console.

eShop

  1. Select your Firebase Project

eShop

  1. Search for APIs, which are shown in below image.

eShop

  1. Click on Enable to, enable that APIs

eShop

  1. Do above steps for below listed API. (enable all below APIs one by one by searching)

eShop

  1. Go to Credential Tab. you will find your Androiod and iOS API keys.

eShop

  1. You have to setup those above API keys for both Platform.

    1. Android Setup

    • Next, open android ‣ app ‣ src ‣ main ‣ AndroidManifest.xml and paste the Google Maps meta data tag into your application tag before the activity tag, placing the API key you copied before to replace YOUR_API_KEY_HERE.

      <meta-data 
      android:name="com.google.android.geo.API_KEY"
      android:value="{{YOUR_API_KEY_HERE}}" />

    Note: For the value field, please paste in your API Key from the Google Maps API registration process.

    eShop

    2. iOS Setup

    • Next, open the ios ‣ Runner ‣ AppDelegate.swift file and paste the following code at shown in image.

      GMSServices.provideAPIKey("YOUR KEY HERE")

      Note: Again, for the value field please paste in your API Key from the registration process.

      eShop