Reputation: 193
Is there a way to work on an Android studio project from multiple computers? Like so that my partner can work on one part of the app while I work on the other without having to like copy and paste and all that.
Upvotes: 0
Views: 3380
Reputation: 532
For this purpose best option is git, You have to read about git.
You can find very good tutorial here
For UI option for Git you can use Sourcetree
Upvotes: 0
Reputation: 547
There are so many option for doing this, You can use version control for that
like, Subversion (SVN) : which manage code on your local server, and this is totally free. like for more detail:
https://medium.com/indianic/importing-your-android-studio-project-in-svn-subversion-39db20e2a4cd
Another world widely famous option is GitHub : https://www.londonappdeveloper.com/how-to-use-git-hub-with-android-studio/
some another version control system is: Gitlab & bitbucket
Upvotes: 3