Hello everyone, I have dedicated some time to hack the Tizen’s source avaliable at
https://review.tizen.org/git
and to be more specific I’m focusing my effort on contacts integration. So I found a way to communicate with the Tizen’s contacts database, there is a C API for that and you can find the code here:
https://review.tizen.org/git/?p=api/contacts.git;a=summary
. To be honest I didn’t like this API and here are the reasons:
- Some search functions like contact_foreach_contact_from_db() does not return all contact information, like the phone number. And I can’t understand why.
- It’s difficult to find the libs you want to use it in the repository. Because sometimes you just don’t have a clue what its name is.
- It would be great if we had a docs page, because going around the source code too nice.
Saying that, I created a very, very simple contacts list based on EFL and of course using the Tizen’s C API for contacts.
So let’s begin !