- Scenario: I have a scenario where I have to build an apk, which will have two sets of themes and drawable.
Can we accommodate this scenario in android, so that apk during compile time has to pick different theme and drawable . Based on some condition as below
Set 1
Set 2
Theme (dark version) In Res folder Folder name: Drawable Image1.png Image2.Png Image3.Png Image4.Png
Theme (light version) In Res folder Folder name: Drawable Image1.png Image2.Png Image3.Png Image4.Png
Note: in set 1 and set 2 the drawable images are different but with same name. That is image 1 in set 1 is different from image 1 in set 2
Kindly guide me regarding the approach which i have to choose
Thanks in advance.