aws-sdk-react-native
aws-sdk-react-native copied to clipboard
No visible @interface for filetransferutility
Helo All,
I am trying to install the filetranferutility following instrucitons here: https://github.com/awslabs/aws-sdk-react-native/issues/35
I started getting the bellow error when I trying to launch .. any help is greatly appreciated. Thank you.
apps/reactnative/TestAppRu /node_modules/aws-sdk-react-native-transfer-utility/ios/AWSTransferUtility/AWSRNS3TransferUtility.m:127:23: No visible @interface for 'AWSS3TransferUtility' declares the selector 'downloadToURL:bucket: key:expression:completionHander:'
Found the solution:
downloadToURL:bucket: key:expression:completionHander:
should be changed to
downloadToURL:bucket: key:expression:completionHandler:
Missed an 'l' in completionHandler .. took 1 full day for me.