I\'m working with Google Maps. I am able to successfully create and can show a Google Map. Now I want to add CameraUpdate(latitude, longitude). I googled and I
CameraUpdate(latitude, longitude)
Try with following method initialize google map api before using
MapsInitializer.initialize(getActivity());
Try this in "onCreate":
try { MapsInitializer.initialize(this); } catch (GooglePlayServicesNotAvailableException e) { e.printStackTrace(); }