I'm trying to develop a simple Android app that request the creation of a geofence to Google Play Services and does stuff when a transition occurs.
My problem arises when I want to create
GeofencingRequest mGeofencingRequest=new GeofencingRequest.Builder()
.build();
since Eclipse warns me that:
GeofencingRequest cannot be resolved to be a type.
I need this object to use addGeofences.
All other imports and interfaces work just fine (already tested).
Any help would be highly appreciate.
I've finally figured out what was the problem and how to solve.
The copy of Google Play Service Lib in my workspace wasn't update to the last version, although Android SDK Mangager said otherwise.
Anyway,