Is there iOS dependency manager support to download dependencies from the S3 bucket? I tried to use Carthage, it's working with public files.
My requirement is to download dependency from S3 bucket which is not public.
Any help will be appreciated.
Is there iOS dependency manager support to download dependencies from the S3 bucket? I tried to use Carthage, it's working with public files.
My requirement is to download dependency from S3 bucket which is not public.
Any help will be appreciated.
Copyright © 2021 Jogjafile Inc.
The closest solution to your question may be this tech:
SPM Binary Frameworks, this is the documentation to it.Did you see this part:
url: "https://url/to/some/remote/xcframework.zip"? In SPM, you can compress anyxcframworkas a zip file and host it in any publicly available location. Then SPM can download them as zip file and automatically load thexcframeworkinside it.So according to this answer, I can see you can generate a downloadable URL in S3.
So, try this:
build your dependency as an xcframwork->calculate its checksum->upload to s3->try to generate a downloadable URL in S3.Comment below if you have met some troubles.