Skip to content
Snippets Groups Projects

Account recovery/backup feature

33 files
+ 986
555
Compare changes
  • Side-by-side
  • Inline

Files

@@ -14,6 +14,7 @@ import Keychain
import Defaults
import Countries
import Voxophone
import GoogleDrive
import Integration
import Permissions
import CrashService
@@ -54,6 +55,8 @@ struct DependencyRegistrator {
container.register(MockPushHandler() as PushHandling)
container.register(MockKeychainHandler() as KeychainHandling)
container.register(MockPermissionHandler() as PermissionHandling)
//container.register(GoogleDriveMock() as GoogleDriveInterface)
container.register(GoogleDrive() as GoogleDriveInterface)
registerCommonDependencies()
}
@@ -69,6 +72,7 @@ struct DependencyRegistrator {
container.register(PushHandler() as PushHandling)
container.register(KeychainHandler() as KeychainHandling)
container.register(PermissionHandler() as PermissionHandling)
container.register(GoogleDrive() as GoogleDriveInterface)
registerCommonDependencies()
}
Loading