Results 10 comments of Mohit

Have you enabled "Push Notifications" in Xcode - Capabilities for the application?

@dzpt Did you call PushNotificationsHandler.requestPermissions() to trigger onRegister() on any other screen?

@dzpt onRegister gets called only once during the lifescycle. Try reinstalling the app and mange it wisely. Here's how I manage it. ``` //App.js PushNotification.configure({ onRegister: function (token) { console.log("TOKEN:",...

@dzpt Crisp answer, **NO**. **Reason** : iOS guidelines only allow one time prompt for notification permission. If I try to do so, it will be blocked at OS level. So,...

I would urge to fast track this request because v3.10.0 has broken an existing feature. I am not sure how most people use the application but to me this seems...

I think of this as a good feature. Taking @makarandh's example here. Flask is an extension of Python making everything in Flask folder part of Python. If there are Python...

Yes, I agree to this logic @moughxyz. Any contact that is not categorized anywhere in Personal or Professional, needs another category and definitely don't be the only item when Contacts...

Hi @rathboma, any update on this? I still can't connect using my OPENSSH PRIVATE KEY.

I only see 'Error while signing data with privateKey: error:06000066:public key routines:OPENSSL_internal:DECODE_ERROR' on the app. I also tired looking into beekeeper-studio logs, developer console but can't find anything specific to...

I fixed this problem by generating a .pem file of my existing private key. **Step 1. Install Putty** `arch -arm64 brew install putty` For non-M1 chips `brew install putty` **Step...