Back to project page AndroidWearable-Samples.
The source code is released under:
Apache License
If you think the Android project AndroidWearable-Samples listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.android.wearable.geofencing; /*w w w . j av a2s. c o m*/ /** Constants used in wearable app. */ public final class Constants { private Constants() { } public static final String TAG = "ExampleGeofencingApp"; // Timeout for making a connection to GoogleApiClient (in milliseconds). public static final long CONNECTION_TIME_OUT_MS = 100; public static final int NOTIFICATION_ID = 1; public static final String ANDROID_BUILDING_ID = "1"; public static final String YERBA_BUENA_ID = "2"; public static final String ACTION_CHECK_IN = "check_in"; public static final String ACTION_DELETE_DATA_ITEM = "delete_data_item"; public static final String KEY_GEOFENCE_ID = "geofence_id"; }