Does anyone know why this would be happening? Other projects I have show src -> main as bolded.
[g
I have tried unmarked directories and recreating the source directory as java as I was having a separate issue.
Does anyone know why this would be happening? Other projects I have show src -> main as bolded.
[g
I have tried unmarked directories and recreating the source directory as java as I was having a separate issue.
I mistakenly set src as the main in my gradle and its now fixed.
sourceSets {
main {
java {
srcDirs = ["main"]
}
}
}