[ad_1]
I’ve a iOS framework static library tasks named “MyProj” with pods, and the podfile similar to:
supply 'https://github.com/CocoaPods/Specs.git'
supply 'https://self-hosted.git.repo'
platform :ios, '10.0'
goal 'MyProj' do
pod 'moduleA'
pod 'moduleB'
..
finish
all dependencies are xcframeworks and lie within the self-hosted git repo, the pod set up works, however when I’m attempting construct MyProj, dependency not exists and compiler studies:
Framework not discovered moduleA
and, I can manually add a brand new scheme with ‘Pods-MyProj’ and construct that, then my primary undertaking can construct and hyperlink moduleA and others efficiently.
I’ve already checked the undertaking configure of ‘MyProj’:
- within the ‘Construct section’ | ‘Dependencies’, nothing there, and I can’t manually add one
- within the ‘Construct section’ | ‘Hyperlink Binary With Libs’, there’s a ‘libPods-MyProj.a’
in conclusion:
- pods set up works
- construct and hyperlink works, however I would like manually construct them so as
- how may pods work with construct dependency?
[ad_2]
