You are using the same `stringList` instance addin...
# android
m
You are using the same
stringList
instance adding elements and clearing it over and over again. For each section you have to create a new instance of
mutableListOf<String>()
.
👍 1