Consider following project hierarchy
- Base
- Common
- Flix
We have Base and Common as library project which we are using in several other projects like Flix. We would like to define some sort of property file into Base and Common project and would like to refer the properties defined at Base or Common level into string.xml file of Flix project.
For example
Consider we have a property file named base.properties under "Base/assets" folder with following content
app.props.cms.url=http://test.flixv2.dev.com/api
We have string.xml file into Flix project, where we have a string resource
<string name="cms_url">HERE WE WOULD LIKE TO REFER THE PROPERTY</string>
we have tried following which is not working
<string name="cms_url">${app.props.cms.url}</string>
Please let know your views.
Thanks