I have an existing handling for push notification directly sent from our backend server. But now, I want to support urban-airship for push delivery without breaking existing flow. So I have defined an IntentReceiver for UA notification (besides existing GcmIntentReceiver). But the problem is, now both the receivers are getting invoked. How can I determine and skip any particular callback depending upon which delivery method is used?
How to determine the source of GCM broadcast notification?
140 Views Asked by Ankit At
1
There are 1 best solutions below
Related Questions in PUSH-NOTIFICATION
- Custom Sound for Expo Push Notifications Only Works in Foreground
- Actionable notification api call not working in background
- After adding the packages of "Xamarin.Firebase.Messaging", getting error related to JAVA0000 "Compilation failed"
- How can I schedule OneSignal notifications programmatically from a Flutter app
- Firebase push doesnt receive after init in other process
- Background notification also get muted on removing "sound" from presentationOptions in @capacitor-firebase/messaging?
- Push notifications in flutter webview app
- (iOS) Can we have multiple APNs files for the same app?
- How does iOS notifications handle cases without content-available key
- Push notification can't be activated in certain phone models and OS
- How to modified remote notification body content in ios using react native
- Push notification sent from Laravel is received by Android device, but isn't received by iOS device
- i want to get the FCM token
- How to update my service worker for existing web push subscribers?
- Android FCM push notification not launching the application on click
Related Questions in GOOGLE-CLOUD-MESSAGING
- Bias correction for worldclim data for species distribution modeling?
- Unable to find users to notify with test with Azure Notification Hub version Google (FCM v1)
- Openssl AESNI-GCM table free benchmark
- .NET MAUI Android FireBase service OnMessageReceived strange behavior
- .NET MAUI on push notification click error is thrown: 'Window was already created'
- Flutter app not receiving notification from firebase in specific cases
- Is it possible to filter real-time developer notifications (RTDN) from Play Store
- Problem with Firebase push notification using php
- Google Cloud Pub/Sub integration in iOS
- decrpt data encrypted with aws kms offline
- Flutter getAPNSToken() returns null on real device
- FCM - connected NodeJS, I'm getting this error "code": "app/invalid-credential"
- Is it possible to set Kafka to receive a message in the topic with the name of the file that is uploaded to Google Storage?
- PHP Encrypt AES-256-GCM using Phpseclib and Decrypt with Javascript using crypto.subtle
- App has been flagged for GCM SDK usage even though we no longer use GCM SDK
Related Questions in ANDROID-C2DM
- com.google.android.c2dm.intent.RECEIVE android 9 (sdk 28) doesn't work
- "C2D_message is not unique" while trying to make sign apk
- Google restricts FCM service based on IP Address, Is there any other free Android push notification provider?
- Location null on receiver service android
- Android GoogleApiAvailability SERVICE_VERSION_UPDATE_REQUIRED Can I get push token?
- GCM refresh registration id frequently
- C2DM shutdown - what happens if still using C2DM API for GCM?
- Android Crash During Register Push Notifications
- How to determine the source of GCM broadcast notification?
- setAutoCancel(true) doesnot work
- How to display C2DM message as a push notification (recived on onMessage() function of GCMIntentService class)
- GCM not working for release .apk - Android
- Characters Allowed in Google ID C2DM
- Google Push Notification c2dm from Android 2.3 to 5.x INSTALL_FAILED_DUPLICATE_PERMISSION perm=com.google.android.c2dm.permission.RECEIVE
- IntentReceiver not called with Android Versions < 4.1
Related Questions in URBANAIRSHIP.COM
- Airship push-worker.js send variables
- AirshipServiceExtension not found in SPM
- Urbain Airship MessageCenter inbox messages always empty on Android
- Get a user's choice from prompt for push notifications with Airship and Flutter
- Conflicting Nuget package in Xamarin.Forms project
- Disabling in app notification but keeping notifications in the notification centre
- Airship setUserNotificationsEnabled malfunction on Android with Flutter?
- Flutter App crashes on iOS after receiving push notification from Airship
- airship: push notification when you click open web page
- Android doesn´t receive push notifications from Airship with Firebase and Flutter
- How to get Airship device token for iOS and gcm_registration_id for Android with Flutter?
- Execution failed for task ':compileDebugJavaWithJavac' while trying to build Android App
- Disable WorkManager Initializer when using app startup
- Android release build crashes on launch
- App crashes due to module library dependency
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The easiest way would be to use 2 different senders. Create a new sender for Urban Airship and set as the 'gcmSender', then add your existing sender as an 'additionalGCMSenderIds' in the Urban Airship config. This will allow Urban Airship to register both senders for the application, and UA will only handle intents form the 'gcmSender'. Then in your existing GCM intent receiver you need to filter out intents from the Urban Airship sender ID by checking the "from" extra on the intent.