Questions tagged [notificationservices]

28 questions
21
votes
2 answers

create my own push notification service without fcm , pusher ,

I want to create a notification system provider that is not based on Google services or similar. In fact, I want to get information about its overall architecture and needed Android sdk functionality. The most weird point for me is to understand how…
6
votes
0 answers

NotificationListenerService for APIs below 18?

Is it anyhow possible to use NotificationListenerService for API levels older than 18. I couldn't find any info on that so I thought it's not possible but I just spotted a post on stackoverflow on which someone said it can be done. (here Mr Nagendra…
5
votes
1 answer

Caching with SqlDependency

I'm using SqlDependency to monitor for changes in a database. Let's say, these are stock quotes, to make the example easy to understand. The application also uses (another) SqlDependeny-Object to monitor changes to static data, which is cached in…
Gregor Favre
  • 155
  • 1
  • 10
5
votes
1 answer

Notification Service Extensions with NSLocalizedString

I am using Notification Serivce Extension to change the text coming from the server as per what I Want. However, that was working good with normal strings. but when I used NSLocalizedString with it, it dosent show the localized string, instead it…
3
votes
2 answers

Notification Services custom delivery channel DLL trust issue

We have an instance of SQL Notifcation Services for which we have written a custom delivery channel. We had this process up and running in our QA environment running Windows Server 2003 with SQL Server 2005. It took a little bit of tweaking to the…
3
votes
4 answers

TFS customization - Team Foundation Server question

We have a process where when the developers change or add a database script and check it into the project. At the time of deployment the release manager needs to know what work items have database script checked in against it. Is there a way where…
pbs
3
votes
1 answer

Not able to read notifications from other apps

I want to read notifications from other apps in android , but I am not able to do so. These are my implementations to achieve same. This is my MainActivity.java package com.example.demoapp; import androidx.appcompat.app.AppCompatActivity; import…
coderzzz18
  • 2,535
  • 5
  • 16
  • 23
3
votes
1 answer

iOS Notification Service Extension with multiple targets never calls extension methods

I'm currently trying to use a Notification Service Extension as a workaround for an app that doesn't obtain a valid badge count in the push notification payload. To fix this I figured I would create a Notification Service Extension that keeps track…
NoSixties
  • 2,443
  • 2
  • 28
  • 65
2
votes
5 answers

Best way of getting notifications in SQL Server Reporting Services using Notification Services

Is it possible to get notifications using SQL Server Reporting Services? Say for example I have a report that I want by mail if has for example suddenly shows more than 10 rows or if a specific value drop below 100 000. Do I need to tie Notification…
Riri
  • 11,501
  • 14
  • 63
  • 88
2
votes
0 answers

Fatal Exception: java.lang.RuntimeException Unable to create service java.lang.ClassNotFoundException Didn't find class service on path DexPathLis

I'm using dynamic feature module.I have mentioned few service classes in DFM.But when the app is published to play store for few users I'm getting this exception only for one service class that happens only in the background(Crashlytics…
2
votes
1 answer

how to change style of notifier angular and add an icon in it

I use angular-notifier package in my angular 7 project. I added its selector in app.component.html before router-outlet. I add its config in app.module.ts in imports. I can not chane some style in it. for example add an icon, or change \n to next…
Elham Ajdari
  • 185
  • 9
2
votes
1 answer

How can I save PendingIntent as an object into Realm, from notificationserviceListener?

Using NotificationServiceLister, I retrieve the pendingIntent of notification. Now I want to store that pendingIntent as an object, into any offline database like, realm, greendao, sqlite, ormLite, active android etc. Is that possible?? If that…
2
votes
1 answer

Gifs in Notification Service Extension crashing

I'm trying to implement Notification Service extension, I was able to use it for images, audio and videos. But in Gifs, for few of the gifs the extension is crashing. eg. I tried for this attachment url which crashed my extension :…
2
votes
0 answers

NotificationListenerService not shows anything

I found this fantastic tutorial: http://gmariotti.blogspot.it/search?q=NotificationListenerService and i tried to download the source and use it for my application to read the whatsapp notification but i can't see anything.. It seems so simple but…
Atlas91
  • 5,754
  • 17
  • 69
  • 141
1
vote
0 answers

How to set Notifications Service Extension in xcode

I'm using normal notifications service extension to auto increase notification number means that without using MORichNotification, CTNotificationService, or something else. Just going to New -> target -> notification service extension -> create…
1
2