I want to add a custom attribute / property into the manifest file, and be able to read it at run time. I want to do this so I can customize the app\'s behavior via these ma
You can create an empty resource file in res/values and add strings and items (for bool or integer values) to it.
bar 33 true
Alternatively you could simply use a Constants object in which you define your properties as final static variables.