Reputation: 398
Running fastlane beta and getting this error:
Bundler::GemNotFound: Could not find CFPropertyList-3.0.0 in any of the sources
I tried installing the gem through the terminal, adding it to my gemfile, updating my fastlane version... no luck. Any ideas?
Upvotes: 11
Views: 10330
Reputation: 1
enter in ios folder => cd ios
then run => gem install CFPropertyList
Upvotes: 0
Reputation: 1646
try
gem install CFPropertyList
update "You don't have write permissions for the ..."
sudo gem install CFPropertyList
Upvotes: 32
Reputation: 2636
The problem was with my Ruby version :
\curl -sSL https://get.rvm.io | bash
rvm install ruby@latest
and set it as default rvm use ruby-3.0.0 --default
gem install cocoapods
pod install
Upvotes: 0
Reputation: 569
Update all gems: sudo gem update --system
if this leads you to some error like:
ERROR: While executing gem ... (Errno::EPERM)
Operation not permitted @ rb_sysopen -
/System/Library/Frameworks/Ruby.framework/Versions/2.3/usr/bin/gem
Try running command: sudo gem install -n /usr/local/bin cocoapods
This will remove this error Could not find CFPropertyList-3.0.0 in any of the sources
If you get error like this with bundle install
while uploading you mobile app then go inside of the android/ios folder and run command:
bundle install
Upvotes: 4
Reputation: 3700
I date with it error on cocoapods plugin:
I tried install CFPropetyList-3.0.0 manualy - not help, I did updates for all gems - no help.
Helped only: fastlane install_plugins
command, it's updated cocoapods plugin for fastlane and now worked fine.
P.S. This error start to show after update to Mojave OS.
Upvotes: 5