I am setting up a private repo that allows distribution of binary files .framework(so there is no source code) through Cocoapods.
The actual repo will be hosted on the Git server, as shown on the Cocoapods page, and the actual files .frameworkwill be hosted on another server that would allow access to the files .frameworkvia HTTP.
Let's say I add this to the .podspec file:
spec.source = { :http => 'https://myhostserver.com/Releases/v1.0.0/MyLibrary.framework.zip' }
From reading the documentation, I don’t understand which authentication Cocoapods supports for linking to a file .frameworkvia HTTP.
I looked at both
http://guides.cocoapods.org/making/private-cocoapods.html
https://guides.cocoapods.org/syntax/podspec.html#source
source
share