android - Adding a Calendar to a SyncAdapter Account for API 10 (2.3.3) to API (14)? -
i have created syncadapter along authentication. able add synced account device, account able have calendars associated it.
- my syncadapter syncs custom calendar webserver
- i plan support android 2.3.3 4.x
i know before api 14 android's internal calendar store wasn't officially supported developers , no contentprovider existed. calendar database schema same 2.3.3 , on? specifically, potentially write custom calendar contentprovider 2.3.3 , have function on 4.0+?
is there anywhere obtain database schema android calendars 2.3.3 , 4.0 investigate this?
additionally, calendar database stores syncadapter account given calendar associated to?
try using tool -- http://www.cellobject.net/tools/cellobjectsqlitexmlbrowser.aspx visualize calendar db. this give schema of calendar db.
specifically, potentially write custom calendar contentprovider 2.3.3 , have function on 4.0+?
- yes, can use contentproviders. (just check whether columns going use present in both)
but calendar database schema same 2.3.3 , on?
- yes, of items same but there column_name changes. can check here http://developer.android.com/reference/android/provider/calendarcontract.eventscolumns.html
hope helps.. let me know if looking specific
Comments
Post a Comment