Quoting from a coworker's post on SO 
<http://stackoverflow.com/questions/26433394/uri-is-not-registered-android-xml-namespace>.
 
We are wondering if it is possible to use a different directory structure 
for xml resources by defining this in build.gradle:

sourceSets {

    main {
        res.srcDirs =
        [
                'src/main/res/layout/fragments',
                'src/main/res/layout',
                'src/main/res'
        ]
    }
}


This doesn't work because Android Studio won't recognize the Android 
namespace attribute in deeper directories. How can we achieve this?

-- 
You received this message because you are subscribed to the Google Groups 
"adt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to