React Native指定了许多子规格:Core
,RCTPushNotification
,RCTNetwork
等。
如果你写
pod `React`
进入Podfile,然后Cocoapods只会获取Core
,因为the podspec specifies React/Core as the default subspec。
如何指定应包括所有子规格,而不必全部列出它们??
答案 0 :(得分:1)
这是CocoaPods的一个功能。 React Podspec故意不包含所有内容。
iOS链接有一个默认子目录:
platform :ios, '7.0'
target 'ReactPod' do
pod 'React/RCTLinkingIOS'
end
target 'ReactPodTests' do
end
您要问的问题在here等其他地方进行了讨论。