I've opened my project in IDEA 2020.3.2, and this ...
# ktor
t
I've opened my project in IDEA 2020.3.2, and this error appeared in
install(ContentNegotiation) { gson { this.setPrettyPrinting() } }
:
Copy code
Cannot access class 'com.google.gson.GsonBuilder'. Check your module classpath for missing or conflicting dependencies
Why is this happening? I have
ktor-gson
included as a gradle dependency.
p
Do you have an actual GSON implementation on the classpath?
t
I switched to using something else at the end.
👍 1