javapns.overview.html Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javapns-jdk16 Show documentation
Show all versions of javapns-jdk16 Show documentation
Library to send notifications using APNS
JavaPNS 2.1
A Java library for interacting with Apple's Push Notification Service.
Usage
The simplest way of pushing notifications with JavaPNS is to use the javapns.Push
class:
import javapns.Push;
public class PushTest {
public static void main(String[] args) {
Push.alert("Hello World!", "keystore.p12", "keystore_password", false, "Your token");
}
}
For more details about using the library, see the on-line wiki at:
http://code.google.com/p/javapns/w/list
© 2015 - 2024 Weber Informatics LLC | Privacy Policy