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
/** | |
* This class provides the URI, const values and some methods to work with TickTick's Content Provider. | |
* | |
* A guide is available on https://docs.google.com/document/d/1zo0JdIWnQWi-D0v7xikknEnsLj4RmrzOuqzScdR_tm8 | |
*/ | |
public class TickTickProviderHelper { | |
private static final Uri TASK_URI = Uri.parse("content://com.ticktick.task.data/tasks"); | |
private static final Uri PROJECT_URI = Uri.parse("content://com.ticktick.task.data/tasklist"); | |
private static final String TASK_CONTENT_ITEM_TYPE = "vnd.android.cursor.item/ticktick.task.task"; |