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).
- I've update today Google Play Service with Android SDK Manager;
- I've included Google_play_services as library to my project;
- Android Project Build Target is on Android 5.0.1;
- My AndroidManifest ha the meta-data field edited to use Google Play Services;
Any help would be highly appreciate.