Android

FCM - 디폴트 아이콘 ( MessagingService에서 설정했는데, 백그라운드 일때 아이콘이 바뀌지 않는경우 . )

Machine_웅 2021. 4. 21. 11:29
728x90
반응형

application 태그 안에 다음 줄을 추가하여 커스텀 기본 아이콘 및 색상을 설정합니다.

     See README(https://goo.gl/l4GJaQ) for more. -->
<meta-data
    android:name="com.google.firebase.messaging.default_notification_icon"
    android:resource="@drawable/ic_stat_ic_notification" />
<!-- Set color used with incoming notification messages. This is used when no color is set for the incoming
     notification message. See README(https://goo.gl/6BKBk7) for more. -->
<meta-data
    android:name="com.google.firebase.messaging.default_notification_color"
    android:resource="@color/colorAccent" />

 

firebase.google.com/docs/cloud-messaging/android/receive?hl=ko

 

728x90
반응형