I have defined few my classes.
I want to have instances of such classes defined in a resource file or in assets.
Actually such instances are static, I want to have a possibility to instantiate these my classes from resources (some xml deserialization is good)
What is the best approach to do this for Android platform?
(For now I can read such data from a resource file but in future user may link external files with instance defitions inside)

