Mam problem z rozszerzeniem usługi powiadomień. Podążyłem za dokumentacją krok po kroku: https://developer.xamarin.com/guides/ios/platform_features/introduction-to-ios10/user-notifications/enhanced-user-notifications/#Working_with_Service_ExtensionsXamarin Notification Service Extension issue
Aby zaimplementować, zrobiłem to w ten sposób.
- Dodany Usługa powiadamiania Przedłużacz z samego prefiksu mojej aplikacji (dodanie przyrostka, np: app: com.testapp.main - EXT: com.testapp.main.notificationextension)
- Utworzono AppID identyfikator com.testapp .main.notificationextension w państwach Center Apple
- Utworzono certyfikatu i zastrzegania profil wysyłać powiadomienia push o identyfikator aplikacji com.testapp.main.notificationextension
- importowane do świadectwa Xcode i Xamarin i zaopatrzenie
- zbudować mojej aplikacji z odniesieniem do powiadomienia Exte referencja nsion.
- utworzono archiwum przesłać do TestFlight
- Signed aplikacja ze swojego certyfikatu Distribution i profilu Provisioning
- Signed rozszerzenie z Certyfikatem dystrybucja i Provisioning Profile
- przesłany do TestFlight
- pobierania i pozwolił powiadomienia Push dla mojej aplikacji
- Wysyłanie bogatych powiadomień push za pomocą Localytics Dashboard do przesyłania wiadomości - Urządzenie odbiera powiadomienia push , ale nie przekazuje do usługi NotificationService.cs c przedłużenie usługi powiadomień!
To jest mój kod NotificationService:
using System;
using Foundation;
using UserNotifications;
namespace NotificationServiceExtension
{
[Register("NotificationService")]
public class NotificationService : UNNotificationServiceExtension
{
Action<UNNotificationContent> ContentHandler { get; set; }
UNMutableNotificationContent BestAttemptContent { get; set; }
const string ATTACHMENT_IMAGE_KEY = "ll_attachment_url";
const string ATTACHMENT_TYPE_KEY = "ll_attachment_type";
const string ATTACHMENT_FILE_NAME = "-localytics-rich-push-attachment.";
protected NotificationService(IntPtr handle) : base(handle)
{
// Note: this .ctor should not contain any initialization logic.
}
public override void DidReceiveNotificationRequest(UNNotificationRequest request, Action<UNNotificationContent> contentHandler)
{
System.Diagnostics.Debug.WriteLine("Notification Service DidReceiveNotificationRequest");
ContentHandler = contentHandler;
BestAttemptContent = (UNMutableNotificationContent)request.Content.MutableCopy();
if (BestAttemptContent != null)
{
string imageURL = null;
string imageType = null;
if (BestAttemptContent.UserInfo.ContainsKey(new NSString(ATTACHMENT_IMAGE_KEY)))
{
imageURL = BestAttemptContent.UserInfo.ValueForKey(new NSString(ATTACHMENT_IMAGE_KEY)).ToString();
}
if (BestAttemptContent.UserInfo.ContainsKey(new NSString(ATTACHMENT_TYPE_KEY)))
{
imageType = BestAttemptContent.UserInfo.ValueForKey(new NSString(ATTACHMENT_TYPE_KEY)).ToString();
}
if (imageURL == null || imageType == null)
{
ContentHandler(BestAttemptContent);
return;
}
var url = NSUrl.FromString(imageURL);
var task = NSUrlSession.SharedSession.CreateDownloadTask(url, (tempFile, response, error) =>
{
if (error != null)
{
ContentHandler(BestAttemptContent);
return;
}
if (tempFile == null)
{
ContentHandler(BestAttemptContent);
return;
}
var cache = NSSearchPath.GetDirectories(NSSearchPathDirectory.CachesDirectory, NSSearchPathDomain.User, true);
var cachesFolder = cache[0];
var guid = NSProcessInfo.ProcessInfo.GloballyUniqueString;
var fileName = guid + ATTACHMENT_FILE_NAME + imageType;
var cacheFile = cachesFolder + fileName;
var attachmentURL = NSUrl.CreateFileUrl(cacheFile, false, null);
NSError err = null;
NSFileManager.DefaultManager.Move(tempFile, attachmentURL, out err);
if (err != null)
{
ContentHandler(BestAttemptContent);
return;
}
UNNotificationAttachmentOptions options = null;
var attachment = UNNotificationAttachment.FromIdentifier("localytics-rich-push-attachment", attachmentURL, options, out err);
if (attachment != null)
{
BestAttemptContent.Attachments = new UNNotificationAttachment[] { attachment };
}
ContentHandler(BestAttemptContent);
return;
});
task.Resume();
}
else {
ContentHandler(BestAttemptContent);
}
}
public override void TimeWillExpire()
{
// Called just before the extension will be terminated by the system.
// Use this as an opportunity to deliver your "best attempt" at modified content, otherwise the original push payload will be used.
ContentHandler(BestAttemptContent);
return;
}
}
}
Jaki jest problem? – Demitrian
Urządzenie odbiera powiadomienia push, ale nie przekazuje kodu usługi NotificationService.cs rozszerzenia usługi powiadomień! –
Co masz na myśli mówiąc "nie przechodzi"? Czy masz na myśli, że 'DidReceiveNotificationRequest' nie jest wykonywane? – Demitrian