forked from organicmaps/organicmaps-tmp
[android] Fixed review notes
This commit is contained in:
parent
3ee394494c
commit
67eaa1eb38
2 changed files with 8 additions and 2 deletions
|
@ -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())
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue