13

I am facing this issue in my Logcat while I run my android app. Does anyone know about this issue and how to fix it?

The dependencies are:

    implementation 'com.android.support:appcompat-v7:25.3.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    implementation 'com.android.support:design:25.3.0'
    implementation 'com.android.support:cardview-v7:25.3.0'
    implementation 'com.android.volley:volley:1.0.0'
    implementation 'com.github.bumptech.glide:glide:3.7.0'
    implementation 'com.google.android.gms:play-services-maps:15.0.1'  
    implementation 'com.google.android.gms:play-services-location:15.0.1'
    implementation 'com.google.android.gms:play-services-places:15.0.1'
    implementation 'com.android.support:support-v4:25.3.0'
    implementation 'de.hdodenhof:circleimageview:2.1.0'
    implementation 'me.zhanghai.android.materialratingbar:library:1.0.2'
    implementation 'junit:junit:4.12'
Zoe
  • 27,060
  • 21
  • 118
  • 148
sksoumik
  • 845
  • 1
  • 9
  • 23

2 Answers2

5

I am not sure about exact solution but I have fixed same issue by avoiding use of Dialog with Maps. Especially when we show dialog while map is animating or marker/polyline is drawing.

Shahbaz Hashmi
  • 2,631
  • 2
  • 26
  • 49
0

This happened to me as well! I found out that it was because my API was not enabled

Try to enable all required APIs from google cloud (like geolocation, places API, geocoding...).

try it and give me feedback