mirror of
https://github.com/etesync/android
synced 2024-11-20 06:58:11 +00:00
8c79c64d75
* support for vCard organization (company / job title) * support for vCard IMPP addresses (closes #105) * refactoring
78 lines
2.1 KiB
XML
78 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ContactsAccountType
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<EditSchema>
|
|
<DataKind
|
|
kind="name"
|
|
maxOccurs="1"
|
|
supportsDisplayName="true"
|
|
supportsMiddleName="true"
|
|
supportsFamilyName="true"
|
|
supportsPhoneticFamilyName="true"
|
|
supportsPhoneticGivenName="true"
|
|
supportsPhoneticMiddleName="true"
|
|
supportsPrefix="true"
|
|
supportsSuffix="true" />
|
|
|
|
<DataKind
|
|
kind="photo"
|
|
maxOccurs="1" />
|
|
|
|
<DataKind kind="phone">
|
|
<Type type="mobile" />
|
|
<Type type="home" />
|
|
<Type type="work" />
|
|
<Type type="fax_work" />
|
|
<Type type="fax_home" />
|
|
<Type type="pager" />
|
|
<Type type="other" />
|
|
<Type type="custom"/>
|
|
<Type type="callback" />
|
|
<Type type="car" />
|
|
<Type type="company_main" />
|
|
<Type type="isdn" />
|
|
<Type type="main" />
|
|
<Type type="other_fax" />
|
|
<Type type="radio" />
|
|
<Type type="telex" />
|
|
<Type type="tty_tdd" />
|
|
<Type type="work_mobile"/>
|
|
<Type type="work_pager" />
|
|
<Type type="assistant" />
|
|
<Type type="mms" />
|
|
</DataKind>
|
|
|
|
<DataKind kind="email">
|
|
<Type type="home" />
|
|
<Type type="work" />
|
|
<Type type="other" />
|
|
<Type type="mobile" />
|
|
<Type type="custom" />
|
|
</DataKind>
|
|
|
|
<DataKind kind="postal" needsStructured="true" >
|
|
<Type type="home" />
|
|
<Type type="work" />
|
|
<Type type="other" />
|
|
<Type type="custom" />
|
|
</DataKind>
|
|
|
|
<DataKind
|
|
kind="nickname"
|
|
maxOccurs="1" />
|
|
|
|
<DataKind kind="website" />
|
|
<DataKind
|
|
kind="note"
|
|
maxOccurs="1" />
|
|
|
|
<DataKind
|
|
dateWithTime="false"
|
|
kind="event">
|
|
<Type maxOccurs="1" type="birthday" yearOptional="false" />
|
|
<Type type="anniversary" />
|
|
</DataKind>
|
|
</EditSchema>
|
|
</ContactsAccountType>
|