I’ve run up an old project which uses AWSiOSSDK 1.7.1 in Cocoapods and tried to compile;
#import "AutoScalingAdjustmentTypeUnmarshaller.h"
#ifdef AWS_MULTI_FRAMEWORK
#import <AWSRuntime/AmazonServiceExceptionUnmarshaller.h>
#else
#import "../AmazonServiceExceptionUnmarshaller.h” <-- File not found error
#endif
I can remove the ../ from the beginning of the header and it finds the file but I would need to remove them all, and there is 1900 occurrences. Also, since it's cocoapods, all the files are locked so it's not made easy. What am I missing or how can I resolve this?