Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f432e953 authored by Fahim Salam Chowdhury's avatar Fahim Salam Chowdhury 👽
Browse files

Merge branch '6143-Fix_sync_authority_missing_issue' into 'main'

6143-Fix_sync_authority_missing_issue

See merge request !75
parents 7ef085bb 7cf92c37
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@
    <string name="dialog_deny">Cancel</string>
    <string name="field_required">This field is required</string>
    <string name="notes_authority" translatable="false">foundation.e.notes.android.providers.AppContentProvider</string>
    <string name="task_authority" translatable="false">foundation.e.tasks</string>
    <string name="email_authority" translatable="false">foundation.e.mail.provider.AppContentProvider</string>
    <string name="media_authority" translatable="false">foundation.e.drive.providers.MediasSyncProvider</string>
    <string name="app_data_authority" translatable="false">foundation.e.drive.providers.SettingsSyncProvider</string>
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    android:accountType="@string/eelo_account_type"
    android:contentAuthority="foundation.e.tasks"
    android:contentAuthority="@string/task_authority"
    android:allowParallelSyncs="true"
    android:supportsUploading="true"
    android:userVisible="true" />
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    android:accountType="@string/google_account_type"
    android:contentAuthority="foundation.e.tasks"
    android:contentAuthority="@string/task_authority"
    android:allowParallelSyncs="true"
    android:supportsUploading="true"
    android:userVisible="true" />
+1 −1
Original line number Diff line number Diff line
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    android:accountType="@string/account_type"
    android:contentAuthority="at.techbee.jtx.provider"
    android:contentAuthority="@string/notes_authority"
    android:allowParallelSyncs="true"
    android:supportsUploading="true" />
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
<sync-adapter xmlns:android="http://schemas.android.com/apk/res/android"
    android:accountType="@string/account_type"
    android:contentAuthority="org.dmfs.tasks"
    android:contentAuthority="@string/task_authority"
    android:allowParallelSyncs="true"
    android:supportsUploading="true" />
Loading