Luiz Carlos

Results 54 comments of Luiz Carlos

I've found something that might be the sollution [here](https://github.com/th3rdwave/react-native-safe-area-context/issues/408#issuecomment-1620800437)

I think this project is abandoned....

@lukewalczak Yes, this only happens on Android 8. If I remember right, on Android 9 (and above) this error doesn't happens I didn't tested on lower Android versions as 8...

Sure, I'll try to find the problem :grin:

@lukewalczak I suppose this error is something related to Android 8 itself or to react-native running on this OS. In my local tests I discovered that: If I remove the...

Yes, I've tryed removing `protectionFlag` but doesn't work. I've created this [codesanbox](https://codesandbox.io/p/sandbox/laughing-fire-xgj58r?file=%2Findex.ts%3A1%2C1) returning pdf's metadata logs. I'm using `pdf-lib` to add and read metadata from pdfs and as you can...

@negaxsender I'm now using [this](https://github.com/Sparticuz/node-qpdf2) package instead. In my case I needed to use a custom `qpdf` binary so I opened [this](https://github.com/Sparticuz/node-qpdf2/pull/39) pull request. Hope this helps you.

@mrousavy This issue is related to #2589 and also [this](https://github.com/margelo/react-native-worklets-core/issues/173) worklets-core issue. On old worklets-core version (0.4.0), creating context with `Worklets.createRunInContextFn( func, 'AnyStringValue' )` also prevents app from crashing. >...

I think that #2829 is the fix for #2579 issue. This `runAsync` crash is also happening on android but #2829 pull doesn't have any changes on android files.

On worklets-core `0.4.0` It works if we create the context from a string: ``` Worklets.createRunInContextFn(func..., 'AnyStringValue' ) ``` Instead of: ``` const asyncContext = Worklets.createContext('VisionCamera.async') Worklets.createRunInContextFn(func..., asyncContext) ``` I don't...