Add ability to send imageUrl and iconBigUrl in data payload Android#1001
Open
kprigel wants to merge 430 commits intoarnesson:masterfrom
Open
Add ability to send imageUrl and iconBigUrl in data payload Android#1001kprigel wants to merge 430 commits intoarnesson:masterfrom
kprigel wants to merge 430 commits intoarnesson:masterfrom
Conversation
Author
|
Also added an optional pinbackUrl that will be opened with a get request upon successful processing of messages. This is a workaround for some Android device manufacturers aggressively managing background services. We use it to first send notifications as a data payload, with a 15 minute ttl (could be shorter or longer if desired), and then if the notification doesn’t “pingback” within 15 minutes, resending the notification as a notification payload. |
…er() on Android for integration testing
… invoked when the APNS token is allocated. Resolves arnesson#201.
…cktrace instead of custom keys. Relates to arnesson#118.
…tual boolean type rather than a binary integer. Fixes arnesson#153.
- to be fully synchronous to eliminate race conditions (remove q dependency) - use xml-js (instead of xml2js) to convert XML>JSON and JSON>XML - [Android] handle existing colors.xml. Resolves arnesson#132.
Contains BREAKING CHANGES - please read CHANGELOG.md for details
…xt when app is not running and therefore cordovaActivity doesn't exist. Resolves arnesson#165.
Fix .forEach is not a function
…r plugin variables not explicitly set at plugin install time. Fixes arnesson#218.
…are added in one operation using `cordova prepare`, both platforms are processed. Fixes arnesson#221.
Added description to IChannelOptions
…iple existing `<color>` to prevent overwriting the existing values. Resolves arnesson#436.
…ng from topics. Partially resolves arnesson#422. Rationalise plugin result callbacks and handling of async task results.
…rom topics. Fully resolves arnesson#422. Rationalise plugin result callbacks and error handling.
…they return a result.
…they return a result.
# Conflicts: # CHANGELOG.md # package.json # plugin.xml
…on and resolves arnesson#440. BREAKING CHANGE: Requires cocoapods>=1.9 (previously cocoapods>=1.8). Adds hook script to check local cocoapods version during plugin install.
…Messaging & Inapp Messaging.
…on and resolves arnesson#440. BREAKING CHANGE: Requires cocoapods>=1.9 (previously cocoapods>=1.8). Adds hook script to check local cocoapods version during plugin install. # Conflicts: # plugin.xml
…Messaging & Inapp Messaging. # Conflicts: # plugin.xml
…rebase-to-6.28.0 update firebase pod to v6.28.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This modification adds imageUrl and iconBigUrl as optional data element payloads for Android FCM notifications. If set, the imageUrl will download and set the style to BigPictureStyle with the a bigPicture with the contents of imageUrl. If the iconBigUrl is set, the largeIcon will be set to the contents of the iconBigUrl. If the imageUrl is set, and iconBigUrl is not set, both largeIcon and bigPicture will be set to the contents of imageUrl. My primary mobile "hacking" language is Obj C, so I apologize for any format issues in advance.