NotificationChannel
-
[Android] android.app.RemoteServiceException: Bad notification for startForeground: java.lang.RuntimeException: invalid channel for service notificationAndroid/Exception 2020. 12. 14. 09:59
์๋๋ก์ด๋ ์๋ฌ ํด๊ฒฐ ๋ฐฉ๋ฒ์ ๋ํ ๊ธ์ ๋๋ค. ๋ค์๊ณผ ๊ฐ์ ์ค๋ฅ๋ Notification ์ ์ฌ์ฉ ์์ Oreo ๋ฒ์ (API26) ์ด์์ด๋ฉด notification Channel์ ๋ฑ๋กํด์ผ ํฉ๋๋ค. ์ด notification Channel์ ๋ฑ๋กํ์ง ์์ ๊ฒฝ์ฐ์ ๋ฐ์ํ๋ ์ค๋ฅ๋ก ๋ค์ ์ฝ๋๋ฅผ ์ถ๊ฐํ๋ฉด ํด๊ฒฐ๋ฉ๋๋ค. public void createNotificationChannel() { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationManager manager = getBaseContext().getSystemService(NotificationManager.class); NotificationChannel serviceChannel =..