INCORRECT_APP_CREDENTIALS here maps android

355 Views Asked by At

So i've followed the tutorials to implement HERE maps on my android application. Added the credentials in AndroidManifest, the dependencies im app/build.gradle and yet i get this error = INCORRECT_APP_CREDENTIALS Any hints? thx

1

There are 1 best solutions below

1
On

Apart from the credentials being correctly added to your AndroidManifest.xml file, you also need to ensure that the application package name matches exactly (both in the manifest and the application gradle file).

build.gradle (app):

android {
    ...

    defaultConfig {
        applicationId "PACKAGE NAME"
    ...
    }
    ...
}

AndroidManifest.xml:

<?xml version="1.0" encoding="utf-8"?>
    <manifest xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              package="PACKAGE NAME">
...
    <meta-data
        android:name="com.here.android.maps.appid"
        android:value="APP ID" />
    <meta-data
        android:name="com.here.android.maps.apptoken"
        android:value="APP CODE" />
    <meta-data
        android:name="com.here.android.maps.license.key"
        android:value="LICENSE KEY" />

Here SDK Credentials