Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse : Specify multiple res directories like specifying multiple src directories

I need to brand my application, and only few images need to be customized, the codebase is the same except few generated constants.

As aapt allows to specify many resource directories, is there any way to specify res directories in Eclipse .classpath file? Something like

<classpathentry kind="androidres" path="res/common" />
<classpathentry kind="androidres" path="res/brand/mybrand_a" />

Or is there any other mean to do that?

Thanks

like image 401
david Avatar asked Apr 19 '11 15:04

david


1 Answers

Have you tried using symlinks from your brand-specific dirs to the main res/ dir?

like image 187
Andrew Flynn Avatar answered Nov 03 '22 09:11

Andrew Flynn