为什么“Podfile.lock”在没有任何更改的情况下更改“pod install”上的“SPEC CHECKSUMS”部分?

ryn*_*nop 16 ios cocoapods react-native podfile podfile-lock

我没有将我的Pods目录签入源代码管理。

如果我运行pod install,则不进行任何操作,然后pod install在几分钟后运行SPEC CHECKSUMS我的Podfile.lock更改部分。

为什么?

pod --version
1.9.3

"react-native": "0.63.2",
Run Code Online (Sandbox Code Playgroud)

Podfile:

require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
require_relative '../node_modules/react-native/scripts/react_native_pods'

platform :ios, '11.0'

target 'Myapp' do
  config = use_native_modules!

  use_react_native!(:path => config["reactNativePath"])
end
Run Code Online (Sandbox Code Playgroud)