java - Cannot find symbol class newLatLng -
i following tutorial on writing apps google maps android api v2. encountered problem when tried following: cameraupdate update = new cameraupdatefactory.newlatlng(location_home);
produces error: cannot find symbol class newlatlng. when type in cameraupdatefactory.
ide suggests "newlatlng" cannot resolve it. added compile 'com.google.android.gms:play-services:7.3.0'
gradle. no rebuilding, cleaning, invalidating caches work. ideas on how make work? thanx.
actually cameraupdate update = cameraupdatefactory.newlatlng(location_home);
no need use new
operator since using factory.
Comments
Post a Comment