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
We use ksp plugins in our android project to do some dagger hilt annotations. When doing gradle build, it creates file under this directory for an app with package name com.example.blah
~/project_dir/app/build/generated/ksp/debug/kotlin/com/example/blah/destinations/MyGeneratedFile.kt We import it as import com.example.blah.destinations.MyGeneratedFile
I want language server to index these files as well so that "Go to definition" kind shortcuts work.
Please help.
P.S: I have tried various IDEs and found cursor.com (fork of vscode with AI) to be the 2-3x more productive than copilot or any other AI editors like continue.dev or double.bot or codium. If cursor becomes a great leader, this library is going to be super crucial to get Android development on vscode/cursor. All the power to your hardwork! If I had connects with cursor team, I'll ask them to fund this project.
The text was updated successfully, but these errors were encountered:
The build folder is excluded when searching for sources, usually generated sources go to target/generated-sources.
To allow this we need to allow the build/generated folder to be searched for sources.
Not sure if there is a convension on where to locate generated sources, there should be one.
We use ksp plugins in our android project to do some dagger hilt annotations. When doing gradle build, it creates file under this directory for an app with package name com.example.blah
~/project_dir/app/build/generated/ksp/debug/kotlin/com/example/blah/destinations/MyGeneratedFile.kt
We import it as import com.example.blah.destinations.MyGeneratedFile
I want language server to index these files as well so that "Go to definition" kind shortcuts work.
Please help.
P.S: I have tried various IDEs and found cursor.com (fork of vscode with AI) to be the 2-3x more productive than copilot or any other AI editors like continue.dev or double.bot or codium. If cursor becomes a great leader, this library is going to be super crucial to get Android development on vscode/cursor. All the power to your hardwork! If I had connects with cursor team, I'll ask them to fund this project.
The text was updated successfully, but these errors were encountered: