Reputation: 43
According to error message, one of the Message data structure imported from com.hariscm.ngobrolind.db.data.Message
but another one imported from hariscmtham.letschat.db.data.Message
. Make sure both of them imported from the same package.
If that didn't resolve the issue, check nullability of your ArrayList.
Upvotes: 1
Reputation: 131
I would suggest to look at the imports of the class, make sure you have imported Message
class from com.hariscm.ngobrolind.db.data.Message
.
Upvotes: 0