Sorry, here:
I get
var images: MutableMap<*, *>
.....
images.put(id, img)
in convertation from java, but studio write error at last string:
Error: Out-projected type 'MutableMap<*, *>' prohibits the use of 'public abstract fun put(key: K, value: V): V? defined in kotlin.collections.MutableMap'
java source:
public Map images;
....
images.put(id, img);