chrisjenx / Calligraphy

Custom fonts in Android the easy way...
Apache License 2.0
8.59k stars 1.1k forks source link

Override fonts for specific flavor #487

Closed cloudshooterhuman closed 3 years ago

cloudshooterhuman commented 3 years ago

I had many flavors on my project and for one of them I need to override the font used globaly.

Actually I'm trying to use contants.xml file to override the font for my specific flavor.

Current project state :

main/assets/fonts bold.otf semibold.otf

My specific flavor (falvorB) : flavorB/assets/fonts flavorBbold.otf flavorBsemibold.otf

used by styles of (main projetc) like this :

<style ...
<item name="fontPath">@string/semibold</item> // semibold is defined on constants.xml on the main level and overriden on contants.xml  of falvorB
</style>