You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Performs setup of the SDK. Starts the synchronization of in the SDK. Registers background process with the system if desired.
73
+
/// Performs setup of the SDK.Activated synchronization
74
74
///
75
75
/// - Parameters:
76
76
/// - credentials: An optional object conforming to `ConnectionCredentialProvider` which is used to setup the SDK. If this is nil, the SDK will attempt to use cached values.
77
-
/// - lifecycleSynchronizationOptions: An instance of `ApplicationLifecycleSynchronizationOptions` that defines which app lifecycle events the synchronization should occur on. If this parameter is not set, a default value of `ApplicationLifecycleSynchronizationOptions.all` will be used.
/// - lifecycleSynchronizationOptions: An instance of `ApplicationLifecycleSynchronizationOptions` that defines which app lifecycle events the synchronization should occur on. If this parameter is not set, a default value of `ApplicationLifecycleSynchronizationOptions.all` will be used.
/// Call this method to deactivate the synchronization of connection and native service data. This stops synchronization and performs cleanup of any stored data. This will also remove any registered geofences.
/// Call this to stop the synchronization completely. Safe to be called multiple times.
188
180
privatefunc stop(){
189
-
stopNotifications()
190
181
Keychain.resetIfNecessary(force:true)
191
182
scheduler.stop()
192
183
state =.stopped
@@ -198,22 +189,7 @@ final class ConnectionsSynchronizer {
198
189
ConnectButtonController.synchronizationLog("Background location not enabled for this target! Enable background location to allow location updates to be delivered to the app in the background.")
199
190
}
200
191
}
201
-
202
-
/// Peforms internal setup to allow the SDK to perform work in response to notification center notifications.
0 commit comments