是否有一种方法可以为Pod依赖项强制使用子依赖项版本?我有这个Pod依赖项;
Podfile
...
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
它对boost-for-react-native具有从属关系,但未指定导致安装1.57.0的版本。
Podfile.lock
...
- Folly (2016.09.26.00):
- boost-for-react-native
我需要1.63.0版。如果我在父Podfile中指定,我仍然以1.57.0结尾。
Podfile
...
pod'boost-for-react-native','〜> 1.63.0'
我相信我需要在Folly文件本身上指定它。