I\'ve got mavenized Android application and customer wants support for the skinning at build time.
For example: mvn clean install -P Developer, mvn clean install -P
Based on the answer from yorkw, this solution works for me:
For each profile, resourceDirectory needs to be added into to the configuration of the android maven plugin.
For example:
${project.basedir}/res-customer1 ${project.basedir}/res-customer2
etc...