[iOS][Android] Update reanimated to `2.11.0` (#19602)# Why Closes ENG-6530. # How - Adjusted the vendored process to use the new version of the script on Android. - Run `et update-vendor
[iOS][Android] Update reanimated to `2.11.0` (#19602)# Why Closes ENG-6530. # How - Adjusted the vendored process to use the new version of the script on Android. - Run `et update-vendored-module -m react-native-reanimated` - Made sure that the integration between the reanimated and the gesture-handler still works # Test Plan - bare-expo with NCL ✅
show more ...
[ios][android] Update react-native-screens to 3.18.0 (#19383)
[ios][android] Update react-native-gesture-handler to 2.7.0 (#19362)
[go][iOS][Android] Upgrade `react-native-screens` from `3.11.1` to `3.14.1` (#18086)
[go][iOS][Android] Upgrade `[email protected]` ➡️ `2.5.0` (#18089)
[android] fix reanimated layout animation broken on android (#15489)# Why reanimated layout animation is broken on android # How - reanimated introduced an overridden `UIManager` module an
[android] fix reanimated layout animation broken on android (#15489)# Why reanimated layout animation is broken on android # How - reanimated introduced an overridden `UIManager` module and i did not update to expo go package list. besides, reanimated package is now a [`TurboReactPackage`](https://github.com/software-mansion/react-native-reanimated/blob/d0faff2f9dd3f09720e4e4735e81c5b88d533007/android/src/main/java/com/swmansion/reanimated/ReanimatedPackage.java#L22), i moved the integration to `ExpoTurboPackage`. the code are mostly referenced from [`ReanimatedPackage`](https://github.com/software-mansion/react-native-reanimated/blob/d0faff2f9dd3f09720e4e4735e81c5b88d533007/android/src/main/java/com/swmansion/reanimated/ReanimatedPackage.java#L22-L84) - move `ReanimatedUIManager.java` to `com/facebook/react/uimanager/` and make it importable from `ExpoTurboPackage` # Test Plan android unversioned expo go + layout animation test Co-authored-by: Bartłomiej Bukowski <[email protected]> Co-authored-by: Brent Vatne <[email protected]>
[android] Update react-native-gesture-handler to 1.6.0 (#7121)# Why Part of #7006 # How - Used `et update-vendored-module` to update `react-native-gesture-handler`. - Updated versions
[android] Update react-native-gesture-handler to 1.6.0 (#7121)# Why Part of #7006 # How - Used `et update-vendored-module` to update `react-native-gesture-handler`. - Updated versions in some apps. - Tried to run it on Android... and it turned out there is a new `RNGHModalUtils` file scoped under `com.facebook.react` package so I've copied this file manually to appropriate directory in `expoview`. - Added a warning saying that `com.facebook.react` needs to be manually updated, we already do the same in `react-native-reanimated`. - Added changelog entry. # Test Plan Tested examples in `native-component-list`.
[sdk36] Remove UIManagerReanimatedHelper from react-native fork and update ReactAndroid (#6062)# Why Fixes #5987 # How - Removed `UIManagerReanimatedHelper` from the fork and added it to
[sdk36] Remove UIManagerReanimatedHelper from react-native fork and update ReactAndroid (#6062)# Why Fixes #5987 # How - Removed `UIManagerReanimatedHelper` from the fork and added it to unversioned `expoview`. Ideally if we could update the command updating vendored modules to pull this file directly from `react-native-reanimated` but I think it's of less priority now since this file is not going to change. - Updated `ReactAndroidCodeTransformer` to properly handle changes in `ExceptionsManagerModule` from RN. - Updated `ReactAndroid` and `ReactCommon` folders, they were not in sync with `react-native` submodule. # Test Plan Running `./gradlew assemble` at `apps/bare-expo` works and `client_android` job passes now.