Home > Back-end >  Google maps is not installed or disabled
Google maps is not installed or disabled

Time:12-04

I have an app that user google navigation but as I am trying to use it it says: "google maps is not installed or disabled". I have read in the internet that this is an Android 11 issue. Any thoughts how to fix this?

CodePudding user response:

To fix this, you will need to add the Google Maps package "com.google.android.apps.maps" as an entry in your AndroidManifest.xml entry:

<manifest package="com.your.package">
  <queries>
    <package android:name="com.google.android.apps.maps" />
  </queries>
  ...
</manifest>
  • Related