According to the API documentation, only Circular shape Geofences allowed:
https://developers.google.com/android/reference/com/google/android/gms/location/Geofence.Builder
And it's looks for example: https://developer.android.com/training/location/geofencing.html
But I have 4 locations, representing 4 corners of rectangle, and I want my Geofence to be that rectangle.
I want to avoid solution of building my custom location monitoring service extending the functionality of monitoring Geofences, because I think this kind of services are CPU & power consuming...
Thanks,