Android encrypted push messages
Encrypt push messages to devices
Encrypted mobile push allows messages to be required or optionally delivered using encryption, to avoid the message content being sent in plain text through the push message gateway.
Enterprise Push package
The encrypted mobile push feature is part of the Xtremepush Enterprise Push package, which is a paid feature. Please review our dedicated guide for more details.
Minimum SDK version
This feature is only available in Xtremepush Android SDK versions starting from v8.1.0.
Encrypted push can be turned on by calling setEncryptedMessagesEnabled(true)
when initialising the Xtremepush SDK in your activities' onCreate
method, by adding the line to PushConnector.builder
:
new PushConnector.Builder("XPUSH_APP_KEY", "GOOGLE_SENDER_ID")
.setEncryptedMessagesEnabled(true)
.create(this);
Updated over 1 year ago