From 0488d70d0f2c0c555e51cc02d601c52ebaef328e Mon Sep 17 00:00:00 2001 From: Sylvain Berfini Date: Tue, 9 Nov 2021 09:31:08 +0100 Subject: [PATCH] This should prevent Android from trying to start DummySyncService --- app/src/main/res/xml/sync_adapter.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/main/res/xml/sync_adapter.xml b/app/src/main/res/xml/sync_adapter.xml index 1c9333943..2be6acf4d 100644 --- a/app/src/main/res/xml/sync_adapter.xml +++ b/app/src/main/res/xml/sync_adapter.xml @@ -4,4 +4,6 @@ android:accountType="@string/sync_account_type" android:contentAuthority="com.android.contacts" android:supportsUploading="false" - android:userVisible="true" /> + android:userVisible="true" + android:allowParallelSyncs="false" + android:isAlwaysSyncable="false" />