-
Notifications
You must be signed in to change notification settings - Fork 2.7k
feat(Android): RN 76 new arch for Android #7965
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
2a776db
Upgraded android to work with rn 77
gosha212 100dd5b
Upgraded to the latest version of detox
gosha212 c742e3b
Added react types.
gosha212 aee806a
Updated pod filke
gosha212 cacd4fe
Fixed es lint error
gosha212 419eed1
Upgraded reanimated
gosha212 6f2ca4c
Fixed ios build
gosha212 fd97ab2
Fixed ios build
gosha212 5dcf7c6
Fixed one test in android
gosha212 cc25411
Fixed android tests
gosha212 e036898
Fixed android unit tests
gosha212 24144b1
Fixed android unit tests
gosha212 68cce81
Fixed android tests
gosha212 534dbb7
Fixed mocked tests
gosha212 a1a64a6
Implemented new arch support for android
gosha212 4763f14
Added new version of detox to support new arch
gosha212 e719a90
Downgrade to RN 76
gosha212 ff9ed27
support ios
gosha212 7183b68
fixed android screenshot
gosha212 550a73f
fixed android screenshot
gosha212 81f1eb6
Reimplemented missing bar style in iOS
gosha212 2000684
Reimplemented missing bar style in iOS
gosha212 6b32776
Fixed ios bar styling
gosha212 560f994
Removed unused library
gosha212 1ed449b
Upgraded roboletric to run on updated sdk
gosha212 a199c01
Revert "Upgraded roboletric to run on updated sdk"
gosha212 23dace4
Merge rn76 old arch branch
gosha212 e4a46bf
Merge branch 'master' into feat/rn77-android-newarch
gosha212 8227eb6
Fixed ios build
gosha212 13c2b9e
Fixed android modal
gosha212 4bf2c81
Removed UI lib from the project and fixed broken tests
gosha212 847350e
Trying to fix android unit tests
gosha212 a47d03b
Fixing android test
gosha212 3cc6222
Merge branch 'master' into feat/rn77-android-newarch
gosha212 efba014
Updated package lock
gosha212 9e31d4f
Ignored android unit tests
gosha212 fc004d0
Fixed e2e test for android
gosha212 570d31f
Fixed tests
gosha212 15fdf3b
Fixed screenshot tolerance
gosha212 9cefa10
Fixed screenshot tolerance
gosha212 6acac33
Fixed screenshot tolerance algorithm
gosha212 6e316b1
Fixed screenshots for genymotion
gosha212 bbfa701
Fixed modal test
gosha212 07c6ae1
Update lib/android/app/src/main/java/com/reactnativenavigation/react/…
gosha212 43d3785
Update lib/android/app/src/main/java/com/reactnativenavigation/option…
gosha212 00f52a6
Update lib/android/app/src/main/java/com/reactnativenavigation/option…
gosha212 4b12594
Update playground/android/settings.gradle
gosha212 7471e36
Fixes after PR
gosha212 1df9f51
Merge branch 'master' into feat/rn77-android-newarch
gosha212 d097e75
Fixed android build
gosha212 b1780eb
Fixed compilation error
gosha212 fedaf89
Merge remote-tracking branch 'origin/feat/rn77-android-newarch' into …
gosha212 e11fd53
Fixed typing issue
gosha212 6dd5e1b
RN 77 Upgrade iOS(#8018)
kochavi-daniel dcf82bc
Merge branch 'master' into feat/rn77-android-newarch
gosha212 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,10 +1,10 @@ | ||
| module.exports = { | ||
| root: true, | ||
| extends: ['@react-native-community', 'prettier', 'prettier/@typescript-eslint', 'prettier/react'], | ||
| extends: ['@react-native', 'prettier', 'prettier/@typescript-eslint', 'prettier/react'], | ||
| parser: '@typescript-eslint/parser', | ||
| plugins: ['@typescript-eslint'], | ||
| env: { | ||
| jest: true, | ||
| 'jest/globals': true, | ||
| }, | ||
| }; | ||
|
|
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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
gosha212 marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,5 @@ | ||
| import "setimmediate"; | ||
| import { LogBox } from 'react-native'; | ||
| LogBox.ignoreAllLogs(); | ||
|
|
||
| LogBox.ignoreAllLogs(); | ||
| require('./playground/index'); |
This file contains hidden or 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 hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.