Jakub Piasecki

Results 99 comments of Jakub Piasecki

It would be in the project-level `build.gradle`: ```groovy buildscript { ext { buildToolsVersion = "31.0.0" minSdkVersion = 21 compileSdkVersion = 31 targetSdkVersion = 31 kotlinVersion="1.6.20" ... ```

A quick google suggests that it may be caused by JVM/Gradle version mismatch or cache, so you can try changing versions (see compatibility [here](https://docs.gradle.org/current/userguide/compatibility.html)) and/or clearing cache. Otherwise, I don't...

This error comes from files that are autogenerated by React Native. I don't think I will be able to help much here but you should consider opening an issue in...

Unfortunately this looks to be a design flaw in the Gesture Handler logic as it heavily relies on intercepting `MotionEvents` and operating on those. Since GH's buttons need to be...

Lack of keyboard support definitely makes components of Gesture Handler less accessible, but I don't think many people are using keyboard to navigate - especially with how it works in...

I don't think I will be able to reproduce it based on the information you've provided, as I don't know how navigation in your application is implemented. Also, you might've...

Can you try changing [this line](https://github.com/software-mansion/react-native-gesture-handler/blob/main/android/build.gradle#L187) in Gesture Handler's `build.gradle` to ```groovy srcDirs += ['src/fabric/java', 'build/generated/source/codegen/java'] ```

> Have you tried looking into the codegenDir property of the react{} block in the build.gradle file that lets you customize where codegen is located? @cortinico It may not be...

@cortinico when you set the `codegenDir` property in the `react{}` block in the app's `build.gradle` it doesn't propagate to the third-party libraries. What I believe is happening is when a...

@javache Thank you for fixing this. Your PR seems to be fixing the drawer layout issue.