Questions tagged [pushy]

Pushy is a Java library for sending APNs (iOS, macOS, and Safari) push notifications. It is written and maintained by the engineers at Turo. https://relayrides.github.io/pushy/

48 questions
0
votes
1 answer

Flutter Global Function update Stateful Widget State

I am writing a Flutter app that uses a Global Function to handle Pushy.me notifications. This function needs to update a stateful widget's state. I have tried a Global Key to access the widgets current state but it did nothing. I have tried an…
Ian Brown
  • 69
  • 12
0
votes
1 answer

Changing Badge Notification count with Pushy in Capacitor/Cordova on iOS

I have a Capacitor/Cordova app using Pushy (https://pushy.me) to handle push notifications. Sending push notifications to devices seems to work fine, and as part of that transaction I can set the app's notification count on the icon when the app is…
PeteSE4
  • 413
  • 3
  • 18
0
votes
1 answer

In Pushy, why use multiple ApnsClients?

Folks, if anyone has used Pushy for sending Apple Notifications to Apple devices, I have a basic question about the ApnsClient. The documentation claims that a "client can be configured to use only one connection", but the only way to do this AFAIK…
paiego
  • 3,619
  • 34
  • 43
0
votes
1 answer

How can i store pushy tokens to database

am using pushy for push notifications but am not able to store the device token in the database. private class RegisterForPushNotificationsAsync extends AsyncTask { protected Exception doInBackground(Void... params) { …
0
votes
0 answers

use pushy lib push to voip but the iphone cann't accept the message

1,iphone app use pushkit receive the Notification; 2,java server use pushy to send Notification; in java server,the pom.xml com.turo pushy
lingo.lin
  • 29
  • 1
  • 2
  • 7
0
votes
1 answer

How Can I Use BroadcastReceiver on API 26 and Higher?

I'm developing an Android App. Users can chat each other. I fetch the messages on PushReceiver class. App opened or closed I mean foreground or background; the code block working from API 19 to API 26 but not working higher than API 26. I try to…
0
votes
1 answer

Pass Data From Broadcast To Activity (Pushy.me)

I'm trying to use Pushy.me. I can get and parse data but I want to update UI with this data. How can I pass data from BroadcastReceiver to Activity? My Receiver class: public class PushReceiver extends BroadcastReceiver { private…
FatalError
  • 153
  • 12
0
votes
0 answers

Identify app launch from push notifications

I've scoured the internet )hopefully thoroughly enough) and can't seem to find the answer I need. I'm developing an app with Nativescript for both Android and iOS and am (or really want to) use the Pushy.io push notification service. The app (only…
delanick
  • 35
  • 2
  • 7
0
votes
1 answer

how to export data received by event in service worker to react components

I am using pushy.me service to receive push notifications and I setup every thing right. so rgiht now I am receiving push in service worker file and i can show it in console, but the problem is that I must access the push's data in my react…
0
votes
2 answers

How Firebase push notification work on IOS?

I want to create my own push notification mechanism for my own iOS applications. I compared some services like pushy.me or Google Firebase. I think Pushy is the only service that can push notifications independent from Apple APNs, but it uses…
0
votes
1 answer

Unable to receive Pushy push notifications on Android

I am using Pushy to send push notifications to an app running on Android device. Received the PN and got this message on Android studio console. D/Pushy: Received push for package com.abc.def However, the broadcast receiver configured in…
user3911119
  • 273
  • 3
  • 14
0
votes
1 answer

Is there any way to know how much time Pushy(Java APNs library) will take to send 100K push notification?

I am working on testing the throughput for sending push notification using this library. If anyone has any idea in this regard, a little guidance would be a great help. Thanks.
0
votes
1 answer

Getting unable to open input stream error when trying to use Netty in IBM WAS server

Am trying to use netty jars, as part of pushy library(https://github.com/relayrides/pushy) to send apple push notifications. It runs fine in my local tomcat. When I try to deploy the same on IBM WAS and start my server, it gives me the below…
csharpnewbie
  • 789
  • 2
  • 12
  • 33
0
votes
1 answer

processing several Futures

I have an application that generates millions of events and sends those events to a server and receives Futures for each event. In order to prevent the application from running out of memory, I put those Futures in a ArrayBlockingQueue and that…
parthsavi
  • 71
  • 6
0
votes
1 answer

Xamarin ios bindings dll - Native linker cant find sdk

I'm attempting to bind the pushy.me obj-c framework. Ive run this through objective sharpie and get the output api definitons file and the framework. From here I build the file and get the output "PushySDK.dll" and reference it in my xamarin.ios…