Reputation: 73
I want to create Multiple Apks with same project and same package.
Because i have to install multiple apks in single device with same package, for managing multiple clients.
Google says "you probably need to create separate Android projects for each APK you intend to publish so that you can appropriately develop them separately. But in this way very difficult to manage multiple source codes.
Is there any other way to create Multiple Apks with same project and same package ?
Upvotes: 0
Views: 1284
Reputation: 1904
If you use Android Studio and Gradle it is pretty easy to have different apk with small code variation, using flavors.
(However i advise you to use different product id for each apk. If you don't you will have issue distribute them on Google Play and running them on the same device. Don't worry the link i gave you explain that.)
Upvotes: 1