React Native:对于 v0.63.4,我应该删除我的 Podfile 中的所有单独的 pod 行吗?
React Native: for v0.63.4, should I remove all the individual pod lines in my Podfile?
我正在将一个 React Native 项目升级到 v0.63.4,我收到了一个与 . In the accepted answer to that question, the user shares what the contents of your Podfile should be. That's the same as what the React Native upgrade helper 中的错误类似的错误,表明 Podfile 应该是。
我项目中的 Podfile 包含一堆像
这样的行
pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
我想知道的: 我应该删除所有这样的行 ^ 并使 Podfile 与 React Native 升级助手中的相同吗?或者我还应该以某种方式包括这些行吗?
按照升级助手的说明进行操作。完成后,您的 Podfile
可能会非常少)。
Podfile.lock 和 Pods 目录可以安全地删除(对于这样的事情可能应该删除,因为这是一个很大的变化)——它们将在 pod install
重新生成.
我正在将一个 React Native 项目升级到 v0.63.4,我收到了一个与
我项目中的 Podfile 包含一堆像
这样的行pod 'FBLazyVector', :path => "../node_modules/react-native/Libraries/FBLazyVector"
pod 'FBReactNativeSpec', :path => "../node_modules/react-native/Libraries/FBReactNativeSpec"
pod 'RCTRequired', :path => "../node_modules/react-native/Libraries/RCTRequired"
我想知道的: 我应该删除所有这样的行 ^ 并使 Podfile 与 React Native 升级助手中的相同吗?或者我还应该以某种方式包括这些行吗?
按照升级助手的说明进行操作。完成后,您的 Podfile
可能会非常少)。
Podfile.lock 和 Pods 目录可以安全地删除(对于这样的事情可能应该删除,因为这是一个很大的变化)——它们将在 pod install
重新生成.