What is wrong here?
Is there anything wrong with using free function here?
(note: it does not happen on all devices)
m
Morten
08/03/2018, 7:50 AM
Don’t know if you already got an answer on this one but map.forEach(key, value -> …) is Java 8 so it would fail on older Android versions. Use map.forEach( (key, value) -> …) should do the trick