I have an Android application that needs to read some custom parameters at startup (e.g. an URL). Those parameters are different from customer to customer.
What I'm expected to do is:
- "broadcast" the APK
- give specific parameter file to each customer (in an extern, separate file called custom_par.xml) to be read at startup
I don't want to have a config file inside the app project: if I need to give the app to a new customer, I'll only need to write a new custom_par.xml for him, and pack it together with the standard "common" APK.
Is it possible?