maui

프로그래밍/.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..

ETC

Visual Studio 오류 : Windows에서 파일 시스템 유형 exFAT의 AppX경로에 배포할 수 없습니다.

오류가 발생한 이유: 프로젝트의 저장경로로 이용하던 SD카드의 파일시스템이 exFAT를 사용중이었음. visual studio 2022에서 MAUI 프로젝트는 exFAT 파일 시스템에서의 빌드와 배포를 지원하지 않는다고 함. 오류 해결법 : SD카드의 파일포맷을 NTFS로 변경.

MAJG
'maui' 태그의 글 목록