Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error installing boost Verification checksum was incorrect, expected error [closed]

I'm working on a React Native project and trying to install CocoaPods dependencies in the ios folder of my project.

When I run the command:

pod install

I got the following error:

[!] Error installing boost
Verification checksum was incorrect, expected f0397ba6e982c4450f27bf32a2a83292aba035b827a5623a14636ea583318c41, got 79e6d3f986444e5a80afbeccdaf2d1c1cf964baa8d766d20859d653a16c39848

How can I resolve this checksum mismatch error for boost when running pod install in my React Native project?

like image 534
dhanush_Raj Avatar asked Oct 22 '25 15:10

dhanush_Raj


1 Answers

in react native node_modules/react-native/third-party-podspecs. In boost.podspec, only change the line

spec.source = { :http => 'https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2', :sha256 => 'f0397ba6e982c4450f27bf32a2a83292aba035b827a5623a14636ea583318c41' }

to

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

for me its Work with platform :ios, 13.0

like image 67
dhanush_Raj Avatar answered Oct 25 '25 03:10

dhanush_Raj