Reputation: 2196
The companys that use my app want their own icon as the app icon. Since it isn't possible to change the app icon programmatically (or is it?), I need to create multiple apks with different icons. How could this be done easily (20 different apks) in as few clicks as possible? Is there a tool or something that could do this? or do I need to write my own plugin and if yes, do you have any links on how to do that in eclipse (I've never created a plugin for eclipse before...)
Thanks
Upvotes: 0
Views: 125
Reputation: 1007554
Since it isn't possible to change the app icon programmatically (or is it?)
Not really.
How could this be done easily (20 different apks) in as few clicks as possible?
Move your production builds to use Gradle for Android and set up a product flavor for each customer. You will be able to have different versions of the icon, and other stuff if needed (e.g., custom string resources with the customer's name), and Gradle can build custom APKs for each product flavor.
Upvotes: 2