I'm writing a program that needs to be customized (with resources) for particular persons that would use it. Putting resources for all users in one build would be unsecure and would make program huge.
For example, I have 3 persons with phone model A, 2 persons with phone model B and one person with phone model C. So, at finalization, I have to create a total of 6 builds for 3 phone models.
Is it possible with the current build system? What would be the optimal way to achieve this?
One possible solution would be to download resources from custom URLs at startup, but using downloaded resources is not possible as far as I can see. Is it true?
Thank you!