8
Android 8.1로 업그레이드 한 후 startForeground가 실패 함
휴대 전화를 8.1 Developer Preview로 업그레이드 한 후 백그라운드 서비스가 더 이상 제대로 시작되지 않습니다. 장기 실행 서비스에서 createFor에서 호출되는 지속적인 알림을 시작하기 위해 startForeground 메소드를 구현했습니다. @TargetApi(Build.VERSION_CODES.O) private fun startForeground() { // Safe call, handled by compat lib. val notificationBuilder = NotificationCompat.Builder(this, DEFAULT_CHANNEL_ID) val notification = notificationBuilder.setOngoing(true) .setSmallIcon(R.drawable.ic_launcher_foreground) .build() …