Reputation: 441
I have an app that has been published in Play Store. Now, I need to develop new features while at the same time to do some bug fixings. How to have 2 different projects with the same package name in Android Studio? So the not-ready new feature development won't overlap with the bug fixings?
Upvotes: 1
Views: 310
Reputation: 56
Source version control such as git is exactly what you want. In your case, you can branch out from the base code and can make some changes with no effect on the main code.
Upvotes: 4