Kotlin 1.5.0 makes lint blow up on `forEach` ```c...
# android
u
Kotlin 1.5.0 makes lint blow up on
forEach
Copy code
createProcessors.forEach { it.process(db) }

Error: Call requires API level 24 (current min is 21): java.lang.Iterable#forEach [NewApi]
          createProcessors.forEach { it.process(db) }
                           ~~~~~~~
That can't be right, no?
v
u
damn; thank you
234 Views