We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, we have pod structure as below:
ModuleA.podspec s.dependency 'AFNetworking'
s.dependency 'AFNetworking'
MergeFile:
group 'Networking' has_dependencies! pod 'AFNetworking' pod 'CustomNetwork', :path => "../../../path" end
Podfile
target 'target' do pod 'Networking', :path => 'MergedPods/Networking' pod 'ModuleA' end
After run 'bundle exec pod install' I got two AFNetworking in pod project. One is under Development Pods, another is under Pods, how to solve it?
The text was updated successfully, but these errors were encountered:
Hello,
Thanks for reporting this. Unfortunately this is something the plugin cannot handle, since it'll not modify dependencies outside of the MergeFile.
One way to fix this in your case is to also try merging ModuleA into the Networking group:
ModuleA
group 'Networking' has_dependencies! pod 'AFNetworking' pod 'CustomNetwork', :path => "../../../path" pod 'ModuleA' end
Sorry, something went wrong.
No branches or pull requests
Hi, we have pod structure as below:
ModuleA.podspec
s.dependency 'AFNetworking'
MergeFile:
group 'Networking' has_dependencies! pod 'AFNetworking' pod 'CustomNetwork', :path => "../../../path" end
Podfile
target 'target' do
pod 'Networking', :path => 'MergedPods/Networking'
pod 'ModuleA'
end
After run 'bundle exec pod install'
I got two AFNetworking in pod project.
One is under Development Pods, another is under Pods, how to solve it?
The text was updated successfully, but these errors were encountered: