How to create new directories in Android Studio?

2

I'm creating an application in Android Studio that has many screens and many layout.xml files. I wanted to organize them into sub-folders, is it possible?

I tried to edit Gradle Script , but a lot of error messages appeared.

    
asked by anonymous 08.12.2015 / 18:00

1 answer

0

You can configure your folders with the following configuration in Gradle.

sourceSets {
    main {
        res.srcDirs = ['src/main/res', 'src/main/res2', 'src/main/res_qq_coisa']
    }
}
    
08.12.2015 / 19:49