I have a PHP code that sends notification to users but suddenly it has been stopped as I reached 1000 users so I shall send 1000 by 1000. Please tell me how to modify my code to do that? function send_notification($custom_message) { global $GOOGLE_AP
I have this Android application with an ongoing notification and there I have a copied text from the user's clipboard. So, what I'd like to do is: Whenever the user copies a new text (when he's NOT in my app), update this text on the notification at
In my Android app, i'm implementing a position-based notification service. In order to do so, i have implemented the following method: private void addProximityAlert() { Intent intent = new Intent(PROX_ALERT_INTENT); PendingIntent proximityIntent = P
I'm working on a project where I create a fake virus that creates popups and a fake adblocker. the order of events i'm trying to make happen is: 1) a fake popup opens 2) fake popup closes itself (to simulate the adblocker) 3) a chrome notification ap
Working with Android GCM Notifications for the first time. Getting the notification to appear in the Notification list no problem, but would like the notification to appear to the user for a short time when it is placed in the list. Is there a way to
I'm making an application which automatically replies to certain tweets with an image. The image is tailored made for each tweet and the tweet is sent as a reply to the original tweet. I'm using TwitterAPI python module. I'm tweeting with 'statuses/u
I am developing a meditation app, which reminds you everyday a different topic to meditate, the topics are stored in array. Right now I get the notification, and when I click on the notification, it takes me to the main activity. But I want the click
I am trying to "resume" a single task activity so it appears in the foreground when a user clicks my notification. (Same behavior as if the user tapped on the app icon from the applications menu.) My notification creates a PendingIntent which broadca
I am trying to create an app which fires a local notification and when the notification is tapped, a specific viewcontroller should be opened. I used didReceiveLocalNotification method to display a specific view controller. But that specific view con
This i my first question on SO, so please bare with me if i need to provide more info to the question. I know there are a ton of questions about iOS notifications. However, i can't figure out how to get the payload in this specific scenario: The user
In Android, if a user sets "Show Notifications" of a specific App to off, is the notification still created? If yes, is it somehow possible to access these created but not shown notifications? --------------Solutions------------- As an example, consi
So, here is the issue: I created a notification with NotificationCompat, I added one action. When user clicks the action, a service is called. How can I change the same notification from within the service? Specifically: the notification buttons labe
So, Anybody know how to set Secondary Icon in notification: Have how to set small icon and large icon by doc, but I can't found how to set secondary icon? EDIT: After answer this question I understand where moved secondary[small icon] on Lollipop: --
Edit: SOLVED! Ever wanted to set a notification from a specific date starting a certain point in time (when an activity is started or when a button is pressed?) Read more to find out how: //Set a notification in 7 days Calendar sevendayalarm = Calend
I had parse notifications working with my old hosting with php 5.4.36-0+deb7u1 the new hosting has php 5.3.0 installed. The first problem was that the new hosting had CURL not enabled. After enabled, I got an error on "$target_device_es = es;" $targe
I have some records in my sqlite table,every record have time or timings,Now when reach that time in records, send alert notification to my mobile. For ex: In my table 1-00,2-00,3-00,4-00 ... like that. When time reach 1-00, then send alert notificat
I have been trying to set the quality of my notification Icon in my application however it does not seem to be fixing. I have tried to import a larger image into my project so that the quality could be higher but that does not work. I have tried sett
I am using an API which doesn't support direct iOS notifications instead they use webhook. When I contacted them about how to use it I got back the response We DO NOT support iOS push notification directly to your client apps. You can make use the we
I'm using the interactive remote notification added by apple in the iOS 8. I successfully implemented this new behavior in my app (Remote && local), but the problem is how i can handle the destructive button action when the app is off (killed
Please advise me how to do better. In my program there are reminders by date. How do I send Notification that when you click on the notification to the user is taken to the screen with the program? It gets through the calendar to the calendar. ------