-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: version pin cocoapods and xcodeproj, ensure pod install is exec …
…through bundle to force gems.
- Loading branch information
1 parent
d06379f
commit fb4fd28
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
source "https://rubygems.org" | ||
|
||
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper | ||
# bound in the template on Cocoapods with next React Native release. | ||
gem 'cocoapods', '>= 1.13', '< 1.15' | ||
# Cocoapods 1.16 requires xcodeproj 1.26.0, which is not compatible with React Native due to a bug. | ||
gem 'cocoapods', '~> 1.15.0' | ||
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' | ||
gem 'xcodeproj', '~> 1.25.0' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
source "https://rubygems.org" | ||
|
||
# Cocoapods 1.15 introduced a bug which break the build. We will remove the upper | ||
# bound in the template on Cocoapods with next React Native release. | ||
gem 'cocoapods', '>= 1.13', '< 1.15' | ||
# Cocoapods 1.16 requires xcodeproj 1.26.0, which is not compatible with React Native due to a bug. | ||
gem 'cocoapods', '~> 1.15.0' | ||
gem 'activesupport', '>= 6.1.7.5', '< 7.1.0' | ||
gem 'xcodeproj', '~> 1.25.0' |