Repairing PODs in IOS
cd ios && pod deintegrate && pod install --repo-update --verbose && cd ..
Combined with npm reset
rm -rf package-lock.json && rm -rf yarn.lock && rm -rf node_modules
rm -rf ios/Podfile.lock && rm -rf ios/Pods
yarn install
cd ios && pod deintegrate && pod install --repo-update --verbose && cd ..
If it fails, delete podfile.lock
cd ios && rm Podfile.lock && pod deintegrate && pod install --repo-update --verbose && cd ..
Combined with npm reset
rm -rf package-lock.json && rm -rf yarn.lock && rm -rf node_modules
rm -rf ios/Podfile.lock && rm -rf ios/Pods
yarn install
cd ios && rm Podfile.lock && pod deintegrate && pod install --repo-update --verbose && cd ..