본문 바로가기

추출2

안드로이드 Notification 클릭 시 원하는 곳으로 이동 중복실행 방지 및 포그라운드 중 바로이동 안드로이드12 이슈대응까지 푸시알림을 클릭 했을 때 원하는 url또는 화면으로 이동하는 기능은 다른 앱을 사용 하시면서 많이 보셨을겁니다. 우선 푸시알림 사용 방법은 https://onedaycodeing.tistory.com/78 안드로이드 8.0이상의 버전 Notification 및 버전별 처리 기존 푸시알람과는 달리 안드로이드 8.0이상부터는 채널이란 개념이 추가됩니다. 채널이란건 한번 그 채널로 푸시를 띄웠다면 앱을 지우지 않는 이상 그 채널이 삭제되진 않습니다. private void Suc onedaycodeing.tistory.com 해당 게시글을 참조해주시고 해당 게시글은 FCM하시는 분들에게 유용합니다!! 보통 푸시 클릭시 앱 실행은 PendingIntent 해당 인텐트로 사용했는데요. //푸시를 클릭했을때 이동/.. 2021. 12. 8.
Swift FCM에서 보낸 데이터를 앱 사용중 실시간 파싱 앱을 사용하는 도중 fcm에서 보낸 KEY VALUE 의 값을 계속해서 받아 볼 수 있는 방법. AppDelegate에서 extension AppDelegate : UNUserNotificationCenterDelegate { func userNotificationCenter(_ center: UNUserNotificationCenter,willPresent notification: UNNotification,withCompletionHandler completionHandler:@escaping(UNNotificationPresentationOptions)-> Void) { let userInfo = notification.request.content.userInfo print(userInfo["gcm.. 2021. 12. 8.