Last active
January 9, 2017 11:48
-
-
Save tyvsmith/6735496 to your computer and use it in GitHub Desktop.
Some helpful intents for interacting with the Evernote Android app.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static final String SEARCH_NOTES = "com.evernote.action.SEARCH_NOTES"; | |
public static final String VIEW_NOTE_LIST = "com.evernote.action.VIEW_NOTELIST"; | |
public static final String NOTE_PICKER = "com.evernote.action.NOTE_PICKER"; | |
public static final String VIEW_NOTE = "com.evernote.action.VIEW_NOTE"; | |
public static final String NEW_NOTE = "com.evernote.action.CREATE_NEW_NOTE"; | |
public static final String EDIT_NOTE = "com.evernote.action.EDIT_NOTE"; | |
public static final String UPDATE_NOTE = "com.evernote.action.UPDATE_NOTE"; | |
public static final String DELETE_NOTE = "com.evernote.action.DELETE_NOTE"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static final String TITLE = Intent.EXTRA_TITLE; | |
public static final String TEXT = Intent.EXTRA_TEXT; | |
public static final String RESOURCE_URIS = Intent.EXTRA_STREAM; | |
public static final String EXTRA_ENML = "EXTRA_ENML"; | |
public static final String TAG_NAME_LIST = "TAG_NAME_LIST"; | |
public static final String NOTEBOOK_GUID = "NOTEBOOK_GUID"; | |
public static final String LINKED_NOTEBOOK_GUID = "LINKED_NOTEBOOK_GUID"; | |
public static final String SOURCE_URL = "SOURCE_URL"; | |
public static final String SOURCE_APP = "SOURCE_APP"; | |
public static final String AUTHOR = "AUTHOR"; | |
public static final String NOTEAPPDATA_KEY = "NOTEAPPDATA_KEY"; | |
public static final String NOTEAPPDATA_VALUE = "NOTEAPPDATA_VALUE"; | |
public static final String CONTENT_CLASS = "CONTENT_CLASS"; | |
public static final String LATITUDE = "LATITUDE"; | |
public static final String LONGITUDE = "LONGITUDE"; | |
public static final String REMINDER_ORDER = "REMINDER_ORDER"; | |
public static final String REMINDER_TIME = "REMINDER_TIME"; | |
public static final String REMINDER_COMPLETE = "REMINDER_COMPLETE"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment