As for your question itself, `titles` parameter ha...
# android
o
As for your question itself,
titles
parameter has type
Array<out String>
because it is
vararg
, you cannot modify contents of the array. Your property
mOtherButtonTitles
is declared without
out
, so you can change contents of the referenced array. Hence assignment is incompatible.