leonard
leonard

Reputation: 2387

AWS iOS SDK failed build after updating (Swift 1.2 environment)

Regardless of all the changes I have to make in Swift 1.2, AWS iOS SDK failed to build after pod update.

Here is pod update print-outs:

enter image description here

And then when I try to build the project, I get something about AWSAutoScaling. Here is the problem:

enter image description here

enter image description here

enter image description here

I am not sure whether it is the incompatibility between AWSiOSSDK 2.0.17 and Swift 1.2 or within AWS itself.

Could someone shed some tips? Many many thanks :)

Upvotes: 0

Views: 85

Answers (1)

Yosuke
Yosuke

Reputation: 3759

The issue is that you are mixing different versions of the SDK in one project. You need to remove AWSiOSSDKv2 from your Podfile, and use AWSCore, AWSCognito, etc. instead. See this blog post for more details.

Upvotes: 1

Related Questions