How to fix issue with google cloud storage conflict
Could you help me to fix problem with cloud storage conflict in your plugin
Error loading plugin 'fastlane-plugin-firebase_test_lab': Unable to activate fastlane-plugin-firebase_test_lab-1.0.7, because google-cloud-storage-1.26.1 conflicts with google-cloud-storage (~> 1.25.1)
Usually you just need to add the plugin to Pluginfile manually and then run bundle update google-cloud-storage. The command will try to resolve your version dependencies and downgrade the gem to 1.25.1. Not the best solution but it will work. The proper solution is to fix a version requirement in this plugin by using ~> 1.25 (>=1.25.0 but < 2.0) instead of ~>1.25.1 (>=1.25.1 but < 1.26.0)
Hello, has anyone found the solution for the google-cloud-storage issue? I am facing it on the 1.0.7 version.
Error loading plugin 'fastlane-plugin-firebase_test_lab': Unable to activate fastlane-plugin-firebase_test_lab-1.0.7, because google-cloud-storage-1.31.0 conflicts with google-cloud-storage (~> 1.25.1)
Thanks in advance.
I personally don't have this problem with my fork, but i think the solution tried by Valdero will solve this, see here You could try to make a fork @smeetchavda and check. @powerivq what do you think?
Thank you @MartyCatawiki. It worked 🎉
I had to manually uninstall other versions of the gem and install manually only the one specified into the error, I think that if the gemspec file is changed as mentioned by @Vyazovoy it should work just fine, though I'm having issues with testplans on this plugin, which is a different thread/issue than this one.
Hey, all. The fix is now in master. @joshdholtz do you have permission to publish?
@powerivq Yup yup! I will get that out in a bit 💪
Thanks for the fix; any idea when this will be published? whilst I can point a Gemfile at master I can't do the same in a Gemspec; we need a version 1.0.8.
Would like to see this published as well. There now is a version conflict updating to fastlane 2.185.0 because of the GCS version spec.
Looks like the published version is the 1.0.2. I fixed this issue by adding gem 'fastlane-plugin-firebase_test_lab', git: 'https://github.com/fastlane/fastlane-plugin-firebase_test_lab' in PluginFile, then bundle install