Home
last modified time | relevance | path

Searched refs:geofenceId (Results 1 – 2 of 2) sorted by relevance

/development/samples/browseable/Geofencing/Wearable/src/com.example.android.wearable.geofencing/
DHomeListenerService.java77 String geofenceId = DataMap.fromByteArray(event.getDataItem().getData()) in onDataChanged() local
79 postNotificationForGeofenceId(geofenceId, event.getDataItem().getUri()); in onDataChanged()
102 private void postNotificationForGeofenceId(String geofenceId, Uri dataItemUri) { in postNotificationForGeofenceId() argument
107 if (ANDROID_BUILDING_ID.equals(geofenceId)) { in postNotificationForGeofenceId()
111 } else if (YERBA_BUENA_ID.equals(geofenceId)) { in postNotificationForGeofenceId()
116 Log.e(TAG, "Unrecognized geofence id: " + geofenceId); in postNotificationForGeofenceId()
/development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
DSimpleGeofence.java42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius, in SimpleGeofence() argument
45 this.mId = geofenceId; in SimpleGeofence()