Home > Mobile >  Getting unresolved reference: ImmutableList error
Getting unresolved reference: ImmutableList error

Time:12-13

Getting unresolved reference: ImmutableList error . what library do I need to import to remove this error? original code is from here: screenshot

CodePudding user response:

You probably just need to add:

implementation("org.jetbrains.kotlinx:kotlinx-collections-immutable:0.3.5")

to your dependencies

  • Related