-1

Does anyone know why this would be happening? Other projects I have show src -> main as bolded.

[src maing

I have tried unmarked directories and recreating the source directory as java as I was having a separate issue.

colby
  • 1
  • 1

1 Answers1

0

I mistakenly set src as the main in my gradle and its now fixed.

sourceSets {
    main {
        java {
            srcDirs = ["main"]
        }
    }
}
colby
  • 1
  • 1