Android is unresponsive #1871
-
I cannot get any gesture responding on Android, whereas iOS responds as expected. I've created a test project with Expo (latest SDK 44) and executed When I run the project on iOS (simulator and device), the taps log as expected. On Android (emulator and device) I get no logs. What I am not getting...?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok, found the problem, I hadn't wrapped the app in It might be a good idea to mention this wrapper in the "Get started" section of the documentation. It is now mentioned only in the "Introduction", among the library installation instructions. Also, it is interesting that the library works without the |
Beta Was this translation helpful? Give feedback.
Ok, found the problem, I hadn't wrapped the app in
GestureHandlerRootView
.It might be a good idea to mention this wrapper in the "Get started" section of the documentation. It is now mentioned only in the "Introduction", among the library installation instructions.
Also, it is interesting that the library works without the
GestureHandlerRootView
on iOS. Maybe the library could print a warning when it is being used without the expected root view!