I think this is due to the large data transfer to Intent. How can I transfer Serializable data to another Activity without restrictions ?
Start to produce an error only in partitions with a large amount of data.
val stocksActivityIntent = Intent(context, StocksActivity::class.java)
stocksActivityIntent.putExtra("PARTNER_KEY", partners[position])
stocksActivityIntent.putExtra("CATEGORY_KEY", "StocksCategoty")
context.startActivity(stocksActivityIntent)