I integrated Google Maps in my Android app using the maps api but when I launch it stays blank and also showing the Google Logo(see picture). this is what the app shows
In builde app gradle I have:
dependencies{
implementation 'com.google.android.gms:play-services-maps:11.0.4'
}
apply plugin: 'com.google.gms.google-services'
In manifest.xml I have:
<uses-permission android:name="com.vallabh.googlemapspractice.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="The Api Key which I got from google console" />