Skip to content

Commit

Permalink
Use fake sync adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
sunkup committed Feb 5, 2025
1 parent 969d92d commit fe3cb72
Showing 1 changed file with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,17 +175,19 @@ abstract class SyncAdapterService: Service() {

// exported sync adapter services; we need a separate class for each authority

abstract class FakeSyncAdapterService: SyncAdapterService()

@AndroidEntryPoint
class CalendarsSyncAdapterService: SyncAdapterService()
class CalendarsSyncAdapterService: FakeSyncAdapterService()

@AndroidEntryPoint
class ContactsSyncAdapterService: SyncAdapterService()
class ContactsSyncAdapterService: FakeSyncAdapterService()

@AndroidEntryPoint
class JtxSyncAdapterService: SyncAdapterService()
class JtxSyncAdapterService: FakeSyncAdapterService()

@AndroidEntryPoint
class OpenTasksSyncAdapterService: SyncAdapterService()
class OpenTasksSyncAdapterService: FakeSyncAdapterService()

@AndroidEntryPoint
class TasksOrgSyncAdapterService: SyncAdapterService()
class TasksOrgSyncAdapterService: FakeSyncAdapterService()

0 comments on commit fe3cb72

Please sign in to comment.