Constantin Predescu
Constantin Predescu
I had the same issue after I've upgraded to the latest version. I've reverted back to v1.4.0. Probably other versions works too but I had 1.4.0 previously.
I had the same issue but @MoOx comment helped me out. Thanks I'm using luxon and changing from `DateTime.toISO()` to `DateTime.toMillis()` worked.
Looks like the issue is on the [react-native-keyboard-tracking-view](https://github.com/wix/react-native-keyboard-tracking-view) and is happen when you are using the component in an app with TabBar One Workaround is to not hide the TabBar...
@hachther , could you please share your MainApplication.kt? I did the updates you suggested (thanks for it) but I have a definite error. The build works, but the app crashes...
@hachther Thank You. It worked perfectly. I did the conversion of the class wrongly.
a workaround is to add into serverless.yml ``` custom: browserify: ``` probably the solution is to change lib/configure.js on line 15 to check if this.serverless.service.custom is defined or not
Hey @matinzd I've put together a minimal reproducible code (react-native + react-native-navigation + react-native-health-connect). You can find it at this location: https://github.com/predescu/rnn-health-connect I've commented out the updates on the android/app/src/main/java/com/rnnhealthconnect/MainActivity.kt...
I've managed to build the app on Xcode 16 and iOS 18 with the following changes: 1. upgrade the Mapbox version in the pod file `$RNMapboxMapsVersion = '=11.6.0'` Previously I...