Is my understanding correct, that we need to manually create
Universal Frameworks/Librariesonly 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/Librariesfrom 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/Librariesby ourselves before using these services?What's the best way to create
Universal Frameworks/Librariesin 2020,XCFramework?
Thanks.