sudo chown -R $(whoami) "/Users/youssefbenattar/Library/Developer/Xcode/DerivedData/Runner-aqtvqtjdevwkqycynlrrytnnjhsr/Build/Intermediates.noindex/Archive Intermediates/Runner/BuildProductsPath/Release-iphoneos/Flutter.framework"
lunch icons
https://mega.nz/file/06VzBbpT#yLZM5sBaG5t6Lxb1NqO848mIlOaLQ4DHDUUxixpty9M
com.countriesquizzes.youssefbenattar
system_profiler SPHardwareDataType | grep UUID
flutter_launcher_icons: ^0.13.1
1. Install rbenv (if not installed):
bashbrew install rbenv
2. Set up rbenv in your shell:
Add the following lines to your shell profile file (e.g., .zprofile
or .bash_profile
):
bashif which rbenv > /dev/null; then eval "$(rbenv init -)"; fi
Then restart your shell session or run:
bashsource .zprofile
3. Install a newer version of Ruby:
bashrbenv install 2.7.0
4. Set the global Ruby version:
bashrbenv global 2.7.0
5. Verify the Ruby version:
bashruby -v
You should see something like ruby 2.7.0
.
6. Install CocoaPods again:
bashsudo gem install cocoapods
7. Run Flutter Doctor:
Finally, run flutter doctor
again to check if the issues have been resolved:
bashflutter doctor
This should resolve the compatibility issue with drb
. If you encounter any further issues, the flutter doctor
output should provide guidance on how to address them.
https://mega.nz/file/E2dTnb6a#y-MvnFcVCU6TL64WploeKhjGh98CYLPq0WkHsd8eZxQ
Comments
Post a Comment