-1

It shows output as W/Google Maps Android API: GLHudOverlay deprecated; draw(): no-op altough the code used in current app has worked earliar in another app with same code. note: The API is not same for both

Charan Reddy
  • 25
  • 1
  • 6
  • 1
    http://stackoverflow.com/questions/38522352/android-logcat-is-flooded-with-w-google-maps-android-api-glhudoverlay-deprecat – antonio Aug 24 '16 at 11:21

1 Answers1

0

That is the reason, I have the same issue. Just make checkSelfPermission and see if that works. if not you must realize that code can't work in your api. here

Steven_art
  • 153
  • 10
  • My problem is solved. The blue screen representing ocean. so i have changed 'mMap.moveCamera(CameraUpdateFactory.newLatLng(hyderabad));mMap.moveCamera(CameraUpdateFactory.zoomTo(12));' to 'mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(hyderabad,12.0f));'. Now map showing my Hyderabad 'LatLng hyderabad = new LatLng(17.3850,78.4867);'. But my logcat is filled with 'W/Google Maps Android API: GLHudOverlay deprecated; draw(): no-op'. This issue will be solved by google play services for the next release [https://code.google.com/p/gmaps-api-issues/issues/detail?id=10201]. Thank you – Charan Reddy Aug 30 '16 at 10:15