Add sync properties

This commit is contained in:
Dominik Schürmann 2014-08-21 11:25:41 +02:00
parent 2930f83b2a
commit f0ff8d2222
2 changed files with 7 additions and 2 deletions

View File

@ -634,7 +634,10 @@
android:resource="@xml/account_desc" />
</service>
<service android:name=".service.ContactSyncAdapterService">
<service
android:name=".service.ContactSyncAdapterService"
android:exported="true"
android:process=":sync">
<intent-filter>
<action android:name="android.content.SyncAdapter" />
</intent-filter>

View File

@ -3,4 +3,6 @@
android:contentAuthority="com.android.contacts"
android:accountType="org.sufficientlysecure.keychain.account"
android:supportsUploading="false"
android:userVisible="true" />
android:userVisible="true"
android:allowParallelSyncs="false"
android:isAlwaysSyncable="true" />