-
Notifications
You must be signed in to change notification settings - Fork 223
Description
Is your feature request related to a problem? Please describe.
When integrating AWS IoT Device SDK for Swift (as suggested for IoT use cases alongside Amplify), there is a dependency conflict.
The IoT Device SDK requires the latest aws-crt-swift (0.54.0), while Amplify depends on aws-sdk-swift pinned to version 1.5.18, which in turn depends on an older version of aws-crt-swift.
This version mismatch prevents using Amplify together with the IoT Device SDK without modifying dependencies manually.
Describe the solution you'd like
Update Amplify’s dependency on aws-sdk-swift to a more recent release that supports the latest aws-crt-swift (>= 0.54.0).
This would allow developers to use Amplify and the AWS IoT Device SDK for Swift together without conflicts, as recommended by AWS documentation.
Describe alternatives you've considered
As a workaround, I forked Amplify and bumped the aws-sdk-swift version to the latest, which resolved the conflict.
If you think this approach is acceptable, I’d be happy to open a pull request from my fork.
Is the feature request related to any of the existing Amplify categories?
No response
Additional context
No response