service

프로그래밍/.NET

MAUI, Notification으로 카톡 알림 가져오기

NotificationService.cs안드로이드 플랫폼에서 동작할 서비스이기 때문에 Platforms/Android 경로에 서비스 파일을 두어야 한다.using Android.App;using Android.OS;using Android.Service.Notification;using Android.Content;namespace MauiApp1.Platforms.Android { [Service(Exported = true, Label = "NotiService", Permission = "android.permission.BIND_NOTIFICATION_LISTENER_SERVICE")] [IntentFilter(new []{ "android.service.notification.Noti..

MAJG
'service' 태그의 글 목록