skip to Main Content

Verification checksum was incorrect, expected 6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e, got 5e89103d9b70bba5c91a794126b169cb67654be2051f90cf7c22ba6893ede0ff

Steps to reproduce

cd ios & pod install

React Native Version
0.73.1

Affected Platforms
Build – MacOS

enter image description here

Error occurred during React Native pod install. Please help

2

Answers


  1. This issue can occur when you have cached files that are corrupted or outdated. You can resolve this by running the following commands:

    pod cache clean --all
    rm -rf Podfile.lock
    pod repo update
    pod install
    

    Hope this help you 😀

    Login or Signup to reply.
  2. move to node_modules/react-native/third-party-podspecs/boost.podspec.
    change below line
    From

      spec.source = { :http => 'https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.tar.bz2',
        :sha256 => '6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e' }
    

    to

    spec.source = { :http => 'https://sourceforge.net/projects/boost/files/boost/1.83.0/boost_1_83_0.tar.bz2',
    :sha256 => '6478edfe2f3305127cffe8caf73ea0176c53769f4bf1585be237eb30798c3b8e' }
    

    Maybe jfrog close their server

    copied from How to get past installing boost with React Native environment setup for iOS?

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search