[android] Fixed review notes

This commit is contained in:
Dmitry Donskoy 2018-12-20 13:33:34 +03:00 committed by Aleksandr Zatsepin
parent 3ee394494c
commit 67eaa1eb38
2 changed files with 8 additions and 2 deletions

View file

@ -119,13 +119,15 @@ public class GeofenceRegistryImpl implements GeofenceRegistry
}
@NonNull
private PendingIntent makeGeofencePendingIntent() {
private PendingIntent makeGeofencePendingIntent()
{
Intent intent = new Intent(mApplication, GeofenceReceiver.class);
return PendingIntent.getBroadcast(mApplication, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
}
@NonNull
private GeofencingRequest makeGeofencingRequest() {
private GeofencingRequest makeGeofencingRequest()
{
GeofencingRequest.Builder builder = new GeofencingRequest.Builder();
return builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_DWELL)
.addGeofences(collectGeofences())

View file

@ -31,7 +31,11 @@ public class GeofenceTransitionsIntentService extends JobIntentService
{
GeofencingEvent geofencingEvent = GeofencingEvent.fromIntent(intent);
if (geofencingEvent.hasError())
{
String errorMessage = "Error code = " + geofencingEvent.getErrorCode();
LOG.e(TAG, errorMessage);
return;
}
int transitionType = geofencingEvent.getGeofenceTransition();
if (transitionType == Geofence.GEOFENCE_TRANSITION_ENTER
|| transitionType == Geofence.GEOFENCE_TRANSITION_EXIT)