I recently upgraded our app to RN version 0.59.5 and AndroidX.
I am getting locally following issue:
/Users/user/Documents/Repos/kiosk-app/node_modules/react-native-gesture-handler/android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerEvent.java:3: error: package android.support.v4.util does not exist
import android.support.v4.util.Pools;
...
When I migrated package react-native-gesture-handler also to AndroidX it works.
Since we use bitrise CI, and there is not possible to migrate react-native-gesture-handler to AndroidX is possible that somehow you fix and upgrade package to AndroidX ?
Reference (first answer here, how it works):
https://stackoverflow.com/questions/56069906/cant-resolve-symbol-android-support-v4-util-pools-in-react-native-gesture-handl
hi @nadzic , did you find any solution?
same issue
@IacoCesar Try below in your package.json.
"react-native-gesture-handler": "git://github.com/hyochan/react-native-gesture-handler.git#package-names",
This should be resolved by #734.
Most helpful comment
@IacoCesar Try below in your
package.json.