Android Studio Blue Square in the catalog

I just imported the project from Eclipse to Android Studio to try it out. I see several directories with a small blue square in the lower right corner, and some directories are blue rather than orange. Does this mean something (I assume it is), and if so, what does it mean?

enter image description here

+4
source share
2 answers

Blue squares: these are the roots of the modules. Equivalent to projects in Eclipse. Blue directories: these are the roots of the source inside the module.

You can study the structure of the module and the source directories from the project structure in more detail (Ctrl-Shift-Alt-S).

.

+4

gradle sourceSets:

sourceSets {
    main.java.srcDirs = ['src/java']
    main.resources.srcDirs = ['src/resources']
}

srcDirs , , :

main.java.srcDirs = ['src/main/java', 'src/test/java']

Android Studio.

0

All Articles