davebren / ResourceNestingExample

This is a demo app for android that shows how to create nested resource directories using the gradle build system.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Could not find property 'res' on source set 'main'. in gradle.build file

umanusorn opened this issue · comments

Could not find property 'res' on source set 'main'.

in gradle.build file

commented

sourceSets must be under android

android {
   ....
   sourceSets {
      main {
          ...
      }
}
commented

Thanks a lot mr-cpp, that fixed my issue. Just found this thread through Google haha