File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 9797 - add-mapbox-submodules-key
9898 - macos/install-rosetta
9999 - run :
100- name : bundle install
101- command : bundle install # pin cocoapods to a working version(for more check a comment in Gemfile)
100+ name : Use activesupport 7.0.8 so that Cocoapods works
101+ command : |
102+ # activesupport was pinned because of Cocoapods being incompatible with active support 7.0.10,
103+ # more details here - https://github.com/CocoaPods/CocoaPods/issues/12081
104+ # allegedly, this issue is resolved in https://github.com/CocoaPods/CocoaPods/pull/12082,
105+ # pinning can be removed after the above fix is released
106+ gem uninstall activesupport --version '>= 7.0.8'
107+ gem install activesupport '7.0.8'
102108 - flutter/install_sdk_and_pub :
103109 version : 3.13.6
104110 app-dir : example
Original file line number Diff line number Diff line change 11source "https://rubygems.org"
22
33gem "fastlane"
4- # activesupport was pinned because of Cocoapods being incompatible with active support 7.0.10,
5- # more details here - https://github.com/CocoaPods/CocoaPods/issues/12081
6- # allegedly, this issue is resolved in https://github.com/CocoaPods/CocoaPods/pull/12082,
7- # pinning can be removed after the above fix is released
8- gem 'activesupport' , '7.0.8'
94
105plugins_path = File . join ( File . dirname ( __FILE__ ) , '.fastlane' , 'Pluginfile' )
116eval_gemfile ( plugins_path ) if File . exist? ( plugins_path )
You can’t perform that action at this time.
0 commit comments