YangJH

Results 7 comments of YangJH

`android/build.gradle` file's `def rnAAR = fileTree("${defaultDir.toString()}").matching({ it.include "**/**/*.aar" }).singleFile` above code makes this problem, pattern should be change from RN0.69 indicated below is sample from `react-native-reanimated` `"**/react-native/**/*${buildType}.aar"` (fyi. https://github.com/software-mansion/react-native-reanimated/blob/main/android/build.gradle#L532) I...

same crash occurred with RNReanimated v2.9.1 (with RN v0.69.x, hermes) also ex) reload downloaded js bundle via react-native-code-push (call `localPackage.install(CodePush.InstallMode.IMMEDIATE)` or call `CodePush.reloadApp(true)` after download bundle)

@ceddybi Thank you for your PR I suggest to apply below code, because `UIDeviceOrientationDidChangeNotification` couldn't detect orientation change when orientation changed via `lockTo**` method. ```diff [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange:) name:UIDeviceOrientationDidChangeNotification...

@arekkubaczkowski I updated [PR](https://github.com/software-mansion/react-native-reanimated/pull/3325) for fix case when disabled Hermes.

Unfortunately this PR can't be fix below case (below code use [react-native-modal](https://github.com/react-native-modal/react-native-modal) for transition) ```typescript const positionStyle = [ { top: 200, left: 200 }, { top: 200, right: 200...

The patch below should work fine as long as you don't use animationType or transparent prop (like react-native-modal) also it was written for 0.71.6 and will most likely not work...