I am having this issue while running following piece of code:
const options = {
region: 'my_region',
access_key: 'myAccessKey',
secret_key: 'MySecretKey',
remember_last_instance: true
}
export const startTransfer = async () => {
try {
const status = await transferUtility.setupWithNative()
console.log(status)
} catch (error) {
console.log(error)
}
}
------------If anyone has implemented help will be appreciated a lot. I am stuck in uploading to s3 in background with react native. If you can suggest any alternatives please let me know.