Boris Tacyniak

Results 167 comments of Boris Tacyniak

I dig into the link provided, I found this: https://github.com/zo0r/react-native-push-notification/issues/1501 https://github.com/zo0r/react-native-push-notification/issues/1501#issuecomment-764203739 https://github.com/react-native-push-notification-ios/push-notification-ios/issues/24#issuecomment-548398814 You can try in Release mode, this should work.

For Android, The main reason is an Activity such as a splash screen which intercept the intent. https://github.com/crazycodeboy/react-native-splash-screen/issues/289#issuecomment-421537284 Or in https://github.com/zo0r/react-native-push-notification#android-manual-installation The following part: > If your app has an...

Using Basic Auth?

Hi! I experienced the same issue but without pouchdb-react-native. PouchDB throw an ETIMEDOUT too but it's not caused by the library but by the mobile/OS. iOS has a limit of...

Hi! I just find this: https://stackoverflow.com/questions/35715790/in-ios-how-can-we-increase-http-connection-limit-per-host But not tested. My solution was: I made a kind of "queue", at first, place all your collections in this queue, then sync same...

https://github.com/Nozbe/WatermelonDB/issues/1851#issuecomment-2507903366

Hi @dqhung311 You can refer to the Apple documentation: https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/sending_notification_requests_to_apns/ Regards,

Looks likes it's due to defaultProps deprecation in recent React Native versions. You can add the property: `monthFormat="MMMM yyyy"` in the `` component to restore it back. https://github.com/wix/react-native-calendars/blame/ed9b13b1ccc06d9382786fc02a85a401d8fa0bc8/src/calendar/header/index.tsx#L313 Looks like...

Hi, You can send data only notification, then pass data into the `localNotification` method. You will have to check for `userInteraction` to avoid loop. Regards

```js onNotification: (notification) => { if(!notification.userInteraction) { PushNotification.localNotification(notification.data); } } ```