You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Attempting to build an Android application after migrating from kapt to ksp, I see hundreds of warning like:
w: [ksp] No dependencies reported for generated source *******_Factory.java which will prevent incremental compilation.
Please file a bug at https://issuetracker.google.com/issues/new?component=413107
Component 413107 is Jetpack Room. The Android application I'm trying to build does not depend on Room. There is no ".room" anywhere in the source code.
I found airbnb/Showkase#322 and removed a similar multi-preview annotation. That unfortunately didn't remove the warnings.
I have not attached source code because there are hundreds of similar warnings in several gradle modules. I didn't see anything suspicious that the source files have in common so I don't know how to build a sample project to reproduce. I understand this isn't an easy issue but any help with the investigation would be appreciated.
The only KSP line in gradle dependencies {} blocks is:
ksp "com.google.dagger:dagger-compiler:2.49"
Versions used:
dagger 2.49
ksp 1.9.21-1.0.15
kotlin 1.9.21
kotlinx serialization 1.6.2
kotlinx coroutines 1.8.0-RC (same result with v1.7.3)
Any other information that could help, feel free to ask
The text was updated successfully, but these errors were encountered:
It might be from xprocessing which is an intermediate layer for porting processors, initially used by Room later to larger user base, since Dagger is using Xprocessing, it might be the cause you see this confusing error.
The referenced issue in Dagger is more suitable place for discussing this issue, let me know if they found any issue in KSP.
Attempting to build an Android application after migrating from kapt to ksp, I see hundreds of warning like:
Component 413107 is Jetpack Room. The Android application I'm trying to build does not depend on Room. There is no ".room" anywhere in the source code.
I found airbnb/Showkase#322 and removed a similar multi-preview annotation. That unfortunately didn't remove the warnings.
I have not attached source code because there are hundreds of similar warnings in several gradle modules. I didn't see anything suspicious that the source files have in common so I don't know how to build a sample project to reproduce. I understand this isn't an easy issue but any help with the investigation would be appreciated.
The only KSP line in gradle
dependencies {}
blocks is:ksp "com.google.dagger:dagger-compiler:2.49"
Versions used:
Any other information that could help, feel free to ask
The text was updated successfully, but these errors were encountered: