amazon-archives/aws-sdk-ios-v1

Weird import issues when used via CocoaPods

pixelogik opened this issue · 3 comments

In S3TransferManager.h the imported file AWSRuntime/AmazonServiceRequest.h is not found when using the sdk via CocoaPods.

#ifdef AWS_MULTI_FRAMEWORK 
#import <AWSRuntime/AmazonServiceRequest.h>
#else 
#import "../AmazonServiceRequest.h"
#endif

Replacing that with the following solves the issue
#import "AmazonServiceRequest.h"

Using version 1.7.1 btw

Unfortunately we are not currently directly supporting Cocoapods with the AWS SDK for iOS. You are welcome to use the binary releases available at http://aws.amazon.com/sdkforios/ or the included project files to build the SDK from source.

We will consider adding support for Cocoapods in a future release.

Alright. Thx for info. It works however with the above quickfix.