amazon-archives / aws-sdk-react-native

AWS SDK for React Native (developer preview)
Apache License 2.0
631 stars 68 forks source link

No visible @interface for filetransferutility #54

Open girish989 opened 7 years ago

girish989 commented 7 years ago

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:'

girish989 commented 7 years ago

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.