user1801605
user1801605

Reputation: 441

How to have 2 different projects with the same package name in Android Studio?

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

Answers (1)

Brian
Brian

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

Related Questions