250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 안드로이드
- node
- 구글 API
- MacOS
- pip
- 해시키
- nginx
- php
- window
- flutter
- Cordova
- Vue.js
- Passport
- PostgreSQL
- mac
- SSH
- python
- Vue
- MYSQL
- Prometheus
- https
- 파이썬
- selenium
- Laravel
- AWS
- Android
- FCM
- OAuth
- ubuntu
- alb
Archives
- Today
- Total
print( sjw.iq == 200) output : true
[Android] FCM Notification icon not display on Android 본문
728x90
반응형
안드로이드 8.0에서 fcm이 왔을 때,
상단에 아이콘이 나오지 않고... status bar를 내렸을 때만 보이는 현상이 있었는데요... ㅠㅠㅠㅠㅠ
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
// Create channel to show notifications.
String channelId = getString(R.string.default_notification_channel_id);
String channelName = getString(R.string.default_notification_channel_name);
NotificationManager notificationManager =
getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(new NotificationChannel(channelId,
channelName, NotificationManager.IMPORTANCE_HIGH));
}
다음과 같이 Oreo 이상에서 채널을 설정해주는 코드가 있어서 전혀 감을 잡지 못하고 있었습니다...
하지만 해결책을 정말 간단하게도...
Manifest 파일에 default_notification_channel_id를 추가해주면 됩니다....
진짜 정말 시간이 너무 아깝네요..
<meta-data android:name="com.google.firebase.messaging.default_notification_channel_id" android:value="@string/default_notification_channel_id"/>
728x90
반응형
'Android' 카테고리의 다른 글
[Android] FCM 적용하기 (0) | 2020.06.03 |
---|---|
[Android] Dependency Conflict 확인하기 (0) | 2020.03.24 |
[Android] 앱 스토어 등록된 APK의 해시키, 서명된 APK 의 해시키 (0) | 2020.02.07 |
[Android] error:protocol fault (couldn't read status) (0) | 2020.01.21 |
[Android] 더블탭, 더블클릭 구현 (GestureDetector를 사용하지 않고 단순 코드) (0) | 2019.07.23 |
Comments