Hello, everyone! :wave: I’m trying to update Room...
# ksp
e
Hello, everyone! 👋 I’m trying to update Room from KAPT to KSP in my project but I’m facing
Plugin with id 'com.google.devtools.ksp' not found.
. I followed this article where it states that only by adding
apply plugin: 'com.google.devtools.ksp'
and replacing
kapt
with
ksp
in the dependency it is good to go. Am I missing something? Thanks a lot! ❤️
u
try specifying a version “1.5.30-1.0.0”
t
Can you share your build.gradle[.kts] and settings.gradle[.kts]?
e
Hello, @Ting-Yuan Huang. I was able to make it compiling only when after adding the specific version in my build.gradle.kts:
Copy code
id("com.google.devtools.ksp") version "1.5.30-1.0.0"
Is it expected?
t
Yes, version need to be specified.
❤️ 1
e
Maybe adding this info in the article will help other developers. 😊
u
And maybe a hint which version to use 😉
t
Will do, thanks!
❤️ 1
👍 1