79469219

Date: 2025-02-26 09:45:36
Score: 1.5
Natty:
Report link

The error occurs because CocoaPods cannot find the Sentry/HybridSDK dependency (version 8.44.0) in its local repo. Here’s how you can fix it:

  1. Ensure you have the latest CocoaPods version:

sudo gem install cocoapods

pod repo update

  1. Remove old dependencies and reinstall:

cd ios

rm -rf Pods

Podfile.lock

pod install --repo-update

cd ..

flutter clean

flutter pub get

After running these steps, pod install should work correctly.🚀

Reasons:
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Alex