Questions tagged [rich-notifications]

This tag is dedicated to questions about Google Chrome's rich notifications API for packaged apps and extensions.

This tag is dedicated to questions about Google Chrome's rich notifications API for packaged apps and extensions.

This API enables Google Chrome apps and extensions to emit notifications in a standardized, cross platform way.

The API is documented in http://developer.chrome.com/apps/notifications.html

The official announcement about the API was made in Google's Chromium Blog: http://blog.chromium.org/2013/05/rich-notifications-in-chrome.html

The API was first introduced in Google Chrome release 28, and replaces previously implemented HTML notifications.

41 questions
2
votes
1 answer

Chrome extension maximum message length

I'm using the google chrome notification api. My question is really simple and short, is it possible to change the maximum length of the message in the notification? Example if my question wasn't clear: That's my notification options: var options =…
1
vote
0 answers

The code signature version is no longer supported after adding Notification Service Extension Xcode 13.3.1

We are trying to add notification service extension target to our existing project. We are getting below error while building the app in real device. Step :- Added Notification service extension target to the project and when we build the app it…
1
vote
0 answers

iOS Rich notifications from FCM in foreground using Notification Service Extension

I'm trying to implement rich notifications in our React Native app, using firebase. Rich notifs are not yet supported by react native so I had to use a mix of swift, in my NotificationServiceExtension, and Objective C, in my AppDelegate.m. I'm not…
1
vote
1 answer

Rich local notification

How can we show the image or any attachment with local notifications as we used to show in rich notifications ? I am receiving the silent notification and then changing it in local notification.
shivi_shub
  • 1,018
  • 1
  • 7
  • 15
1
vote
1 answer

Cant get image iOS Rich Push notifications with Xcode, Swift3

I already posted a question following the link. I tried the code in the answers but still cant get message. i did customize answers code like this: Code: import UserNotifications import SDWebImage class NotificationService:…
iwahei0813
  • 61
  • 10
1
vote
2 answers

Notification Service Extension is not working

I am creating an iOS app(Objective C and xcode 8.3). I have integrated push notifification with firebase. It is working fine. Now I need to show notification with an image(Rich Notification). I have created Notification Service Extension.I have…
1
vote
1 answer

Rich Notification in swift. Image not show in notification

I make rich notification to show image in notification but whenever i send simple message then i get notification. Last 2 day i am trying to show image in notification but it was not done. Please help me to do this. Thank you in advance This is my…
1
vote
1 answer

Check Some modification Logs in Notitifcationservice.m file(notification service extension)

for modification purpose of notification we used notification service extension but i am not able to find out some logs in my xcode console. (void)didReceiveNotificationRequest:(UNNotificationRequest *)request withContentHandler:(void…
1
vote
2 answers

Using UNNotificationServiceExtension for rich remote notifications

I am trying to implement the rich remote notifications in ios 10. I have implemented this code. The control after receiving the notification is going here, but I don't know how to download the image and display in the notifications. Thanks in…
Prajyot
  • 99
  • 1
  • 12
1
vote
1 answer

Unable to load large images into web view android

I think its because images are large, but, if anybody has different opinion, please, share. So, im receiving notification like HTML, and want to present it in web view. Now, when i present notifications with smaller pictures, everything works fine.…
Miljan Vulovic
  • 1,586
  • 3
  • 20
  • 48
1
vote
1 answer

How can I change text direction to RTL in a Chrome notification?

I am working on a Chrome extension that has push notifications, and the message that will appear on the notification is in Arabic. I want to change the text direction form LTR to RTL, how can I do that?
0
votes
1 answer

Rich notification play video clip

I'm trying to get rich notification and play video on the notification. I success to show an image and not found swift sample code. What need to be done to add video clip / mp4 notification support? which function need to add to the…
Yakir Sayada
  • 171
  • 1
  • 11
0
votes
0 answers

how to stack the notification?

I want to stack the chrome notification in desktop. My project is chrome-extension, and I want to add the notification. background.js let data = [{ name: 'hi', content: 'aaa' }, { name: 'hi2', content: 'aaa2' }]; function init() { if…
0
votes
1 answer

React-native-firebase Bigimage not working in ios

i can not show big image in notification in ios when app close or open , but working in android var display_notification = new firebase.notifications.Notification({ show_in_foreground: true }) …
0
votes
1 answer

iOS Notification Service extension causes Program ended with exit code: 0

I'm having a trouble to use rich notification. When I send a apns payload, my notification service extension print Program ended with exit code: 0 error message EXC_RESOURCE and show like normal notification. The error message seems like attached…
RubyAn
  • 65
  • 2
  • 8