Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions docs/Point SDK/iOS/Migration Guides/Migration guide to Swift 6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
pagination_next: null
---

# Migration Guide to Swift 6

To use a Swift 6 app with the iOS Point SDK v 17.0.1 and below, you’ll need to disable the new Swift concurrency features for the SDK. This can be done by adding `@preconcurrency` attribute to import `BDPointSDK` module and the `BDPBluedotServiceDelegate`, `BDPGeoTriggeringEventDelegate`, `BDPTempoTrackingDelegate` delegates if they are used in the app.

```
@preconcurrency import BDPointSDK

extension AppDelegate: @preconcurrency BDPBluedotServiceDelegate {

}
```

An example of using a Swift 6 minimal app is available [here](https://github.com/Bluedot-Innovation/PointSDK-MinimalIntegrationExample-iOS/tree/nk/swift6-app-with-swift5-BDPointSDK).