Android

To begin with – The configuration steps

  1. Open your build.gradle file of Module:app. Add implementation 'io.teliver.sdk:TeliverSdk:4.0.1' as dependency.

  2. Obtain the map key from Google maps page.

  3. Open your AndroidManifest.xml file and paste the following code under application tag after embedding your map key obtained from Google.

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

Note: You can skip steps 2 and 3 if you have already got map key and added it in manifest or you just want the location updates alone.

Last updated