Trying to figure out #527, I created a fresh android project in Android Studio 3.4.2.
I added all dependencies in build.gradle but now I'm not able to build the project because of the compile error Unresolved reference: serializer
To reproduce, open the project in Android Studio 3.4.2
MyApplication.zip
I forgot to apply the plugin by adding apply plugin: 'kotlinx-serialization' in build.gradle of Module: app.
This fixed the issue
Most helpful comment
I forgot to apply the plugin by adding
apply plugin: 'kotlinx-serialization'in build.gradle of Module: app.This fixed the issue