Dynamic Apk In Android
android, apk
Solution
You can compile your code dynamicaly by java code using for example maven or ant. To do that you need you have to make your Android project be maven project. To compile Android using maven I use maven-android-plugin. Than you can just run some thing like `mvn package` or from java code and wait until maven compiles you code with customized logos that you need. And you will have an apk in target directory.
Problem
Is there anyway to create dynamic apk.ie suppose we have a main site and it has many subdomains.Each subdomain should have there own customized apk containing their own customized logo,news etc. Is it any way to create apk other than creating individual apk for each site?