3

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?

Michael
  • 59
  • 1
  • 6

1 Answers1

5

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>
NikolaStan
  • 90
  • 5