Not ale to integrate MapMyIndia android native application

Hi Team,
I am trying for first time to integrate MapMyIndia in android Native App. Follwing error I am getting

Added following satement in settings.gradle.kts
maven {
url = uri(“https://maven.mapmyindia.com/repository/mapmyindia/”)
}
In app/uild.gradle.kts added following statement
implementation(“com.mapmyindia.sdk:mapmyindia-android-sdk:7.0.3”)

when I am trying to buld the app getting following error
Task :app:mergeReleaseNativeLibs FAILED

FAILURE: Build failed with an exception.

  • What went wrong:
    Execution failed for task ‘:app:mergeReleaseNativeLibs’.

Could not resolve all files for configuration ‘:app:releaseRuntimeClasspath’.
Could not find com.mapmyindia.sdk:mapmyindia-android-sdk:7.0.3.
Searched in the following locations:
- https://dl.google.com/dl/android/maven2/com/mapmyindia/sdk/mapmyindia-android-sdk/7.0.3/mapmyindia-android-sdk-7.0.3.pom

 Required by:
     project :app
  • Try:

Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
BUILD FAILED in 8s
Can any one help whats the wrong I am doing
Other Useful info
namespace = “com.embitel.smartconnect”
compileSdk = 36

defaultConfig {
    applicationId = "com.embitel.smartconnect"
    minSdk = 29
    targetSdk = 36
    versionCode = 1
    versionName = "1.0"

    testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

}