android.app.RemoteServiceException: Bad notification for startForeground
问题 I'm trying to start foreground service as follow: if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { NotificationChannel chan = new NotificationChannel( getApplicationContext().getPackageName(), "My Foreground Service", NotificationManager.IMPORTANCE_LOW); chan.setLightColor(Color.BLUE); chan.setLockscreenVisibility(Notification.VISIBILITY_SECRET); NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); assert manager != null; manager