Is my understanding correct, that we need to manually create
Universal Frameworks/Libraries
only if we distribute our libs by providing binaries (let's say directly download.framework
)? So if we distribute using CocoaPods or Carthage, these tools will createUniversal Frameworks/Libraries
from our source code by themselves, right?As I understand, CocoaPods & Carthage allow to hide source code by distributing only binaries. Does that mean that in this case we need to create
Universal Frameworks/Libraries
by ourselves before using these services?What's the best way to create
Universal Frameworks/Libraries
in 2020,XCFramework
?
Thanks.