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.agendadata; /*from w ww .ja va 2 s .c o m*/ /** Constants used in wearable app. */ public final class Constants { private Constants() { } public static final String TAG = "AgendaDataSample"; public static final String TITLE = "title"; public static final String DESCRIPTION = "description"; public static final String BEGIN = "begin"; public static final String END = "end"; public static final String ALL_DAY = "all_day"; public static final String PROFILE_PIC = "profile_pic"; public static final String EXTRA_SILENT = "silent"; }