When using the following code to load a texture from an S3 presigned URL:
const texture = useTexture(s3PresignedUrl);
I encounter an error on React Native for iOS:
Error: Could not load https://[my-url]: Failed to getSize of file:///var/mobile/Containers/Data/Application/B52E51BC-89CA-4687-9298-3DE5C50BE098/Library/Caches/ExponentAsset-12cc3b989a74467a9322996b53b27856.
I have also attempted to use useLoader, but I receive the same error.
When using the following code to load a texture from an S3 presigned URL:
const texture = useTexture(s3PresignedUrl);
I encounter an error on React Native for iOS:
Error: Could not load https://[my-url]: Failed to getSize of file:///var/mobile/Containers/Data/Application/B52E51BC-89CA-4687-9298-3DE5C50BE098/Library/Caches/ExponentAsset-12cc3b989a74467a9322996b53b27856.
I have also attempted to use useLoader, but I receive the same error.