YangJH
YangJH
I made PR #414
`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...
답변 감사드려요! `wrapActivity()`에서 제공해주시는 activity상태만을 사용해서 처리하기엔 아래와 같은 어려운 부분이 있을 것 같습니다. freeze(덮여진 activity들의 fallback처리)는 트랜지션이 끝나고 완전히 덮여진 순간에 동작해야만 합니다. 그래야 유저에게 트랜지션 중 정상적인 activity를...
@dougwilson getSocketAddr have problem because `req.socket` can be null. this code makes below TypeError ``` .../forwarded/index.js:49 : req.connection.remoteAddress ^ TypeError: Cannot read properties of null (reading 'remoteAddress') ``` fyi) https://nodejs.org/dist/latest-v16.x/docs/api/http.html#messagesocket...
ping @numandev1