Hi! After adding Compose in my project I get Runti...
# compose
s
Hi! After adding Compose in my project I get Runtime exception when use classes extended by Kotlin collections: 
java.lang.NoSuchMethodError: No virtual method getSize()I in class Lcom/itomych/keen/model/data/advisor/Advisors; or its super classes (declaration of 'com.itomych.keen.model.data.advisor.Advisors' appears in /data/app/com.ingenio.keen.stage-pdB_A-Dg-Th4xv8WtzPqTA==/base.apk!classes5.dex)
at com.itomych.keen.model.data.advisor.Advisors.size(Advisors.kt:9)
Advisors class is only wrapper for ArrayList:
Advisors : ArrayList<Advisor>
I used Google guide: https://developer.android.com/jetpack/compose/setup. Kotlin plugin: 1.5.10. What I have tried and nothing helped: • I had Kotlin plugin 1.5.21 then I removed it to have version 1.5.10. • I checked dependency tree and decided to force all dependencies for std libraries which I found to 1.5.10 version. • Added multidex library Maybe someone had similar issues and know how to resolve, appreciate any help.