Mario Andhika
06/02/2025, 7:19 AM<!-- This is composeResources/values/string.xml -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Standard App Name</string>
<string name="only_in_base">This string only declared in base, but usable in both</string>
My 2nd resource file:
<!-- This is flavoredResources/values/string.xml -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Flavoured App Name</string>
<!-- only_in_base doesn't exist here -->
How to configure Compose Multiplatform Resources, so that it loads both resource files, but Resource.values.app_name would print “Flavoured App Name”, but Resources.values.only_in_base would also be resolved, without copying the entry in the 2nd resource file?