forked from software-mansion/react-native-screens
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: migrate
Example
app & e2e tests to RN 0.72.4 (software-mansi…
…on#1880) ## Description Migrate `Example` and e2e tests to the latest RN. For some reason (I believe due to the presence and usage of v4) this app was left behind with RN versions. I did leave some `@react-navigation` components on v5 versions (`bottom-tabs`, `drawer`, etc., because using more recent versions caused e2e tests to fail), I'll try to upgrade these in separate PR. ## Changes * Migrated `Example` app to `0.72.4` * Bumped most of the dependencies to recent versions (also some of the natives) * Fixed detox configuration ## Test code and steps to reproduce Build `Example` & check that it works + CI passes ## Checklist - [ ] Ensured that CI passes
- Loading branch information
Showing
34 changed files
with
3,211 additions
and
2,888 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.export = { | ||
root: true, | ||
extends: '@react-native', | ||
}; |
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,4 +1,4 @@ | ||
source 'https://rubygems.org' | ||
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version | ||
ruby '2.7.5' | ||
gem 'cocoapods', '~> 1.11', '>= 1.11.2' | ||
ruby '>= 2.6.10' | ||
gem 'cocoapods', '~> 1.12' |
Oops, something went wrong.