制作自己的pod库时,依赖其他第三方库,在pod install时提示:
[!] The 'Pods-UbunGit_OC' target has transitive dependencies that include static frameworks: (SuperPlayer)
解决方案:
在自己的pod库.podspec文件中加入:
s.static_framework = true
原因已经很明显了,是因为依赖的第三方库中包含了静态文件
制作自己的pod库时,依赖其他第三方库,在pod install时提示:
[!] The 'Pods-UbunGit_OC' target has transitive dependencies that include static frameworks: (SuperPlayer)
解决方案:
在自己的pod库.podspec文件中加入:
s.static_framework = true
原因已经很明显了,是因为依赖的第三方库中包含了静态文件
本文标题:Cocopods 提示target has transitive
本文链接:https://www.haomeiwen.com/subject/pgrtaqtx.html
网友评论