Reputation: 1547
I want to make several versions of my application for different customers, but the means by which design do you start and what is the best tool for the implementation of this structure, Eclipse or AndroidStudio?
I started to refactor my code and turn it into library but it is not enough. However I learned that Android Studio introduced the notion of variance with the concept of targets is what is the best tool for multi edition of my software?
Upvotes: 0
Views: 158
Reputation: 44571
I would recommend sticking with Eclipse for now as far as developing for a release and playing with Android Studio for now until it matures a little. According to the Docs
Caution: Android Studio is currently available as an early access preview. Several features are either incomplete or not yet implemented and you may encounter bugs. If you are not comfortable using an unfinished product, you may want to instead download (or continue to use) the ADT Bundle (Eclipse with the ADT Plugin).
So I wouldn't be to eager to use that as your main tool just yet unless you are extremely comfortable with working with software that you may need to find workarounds in
Upvotes: 2