Back to project page GeoNote.
The source code is released under:
Apache License
If you think the Android project GeoNote 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 geonote.app; /*from ww w .jav a 2s . c om*/ public class Constants { /** Standard activity result: operation succeeded. */ public static final int RESULT_OK = -1; /** Standard activity result: operation canceled. */ public static final int RESULT_CANCELED = 0; /** Start of user-defined activity results. */ public static final int RESULT_FIRST_USER = 1; /** activity result: operation request to delete. */ public static final int RESULT_SAVE_NOTE = 2; /** activity result: operation request to delete. */ public static final int RESULT_DELETE_NOTE = 3; public static final int ACTIVITY_NOTE_VIEW = 1; public static final int ACTIVITY_LOGIN = 2; public static final int ACTIVITY_NOTES_LIST = 3; public static final int ACTIVITY_SETTINGS = 4; public static final String PREFS_NOTES = "GeoNote.Preferences.V1"; public static final String PREFS_NOTES_VALUES_JSON = "GeoNote.Preferences.V1.Notes"; public static final String APP_ID = "e3ec817cadded7a87ea28a89852d8011"; public static final int CURRENT_NOTIFICATION_ID =0; }