XCFramework with Pods Dependencies

You can create a pod and publish it. Check https://guides.cocoapods.org/making/making-a-cocoapod.html Sample Podspec file with XCFramework + Third party dependency Pod::Spec.new do |s| s.name=”XCFrameworkTest” # Name for your pod s.version = ‘0.0.1’ s.summary = ‘Sample Spec’ s.homepage=”https://www.google.com” s.author = { ‘Sample’ => ‘[email protected]’ } s.license = { :type => “MIT”, :text => “MIT License” } s.platform … Read more