for (a in allowedNotifications!!.indices) {
if (allowedNotifications!![a] == id) {
allowDuringAnimation = true
break
}
}
}
на это:
allowedNotifications?.run {
this.indices
.asSequence()
.find { this[it] == id }
?.run { allowDuringAnimation = true }
}
узнаю NotificationCenter из телеграма
у тебя это тайпчекнулось?
Обсуждают сегодня