Reputation: 156
My friend and I are working on a project and need a way to collaborate. Is there a service like google docs for Android Studio?
Upvotes: 4
Views: 25042
Reputation: 2833
There is another Android Studio plugin
for collaborative live coding
named "CodeTogether Live"
which is easy to use and supports Android Studio Iguana
.
https://www.codetogether.com/live/download/
Upvotes: 0
Reputation: 168
Open Android Studio Project in IntelliJ IDEA then install a plugin "Code With Me" this plugin allows pair programming, It enables you to share the currently opened project in your IDE with others, and work on it together in real-time.
Upvotes: 1
Reputation: 529
As HBB20 said, the classical option is to use a version control system (such as GIT).
However, if you want real time interactions as you would get in google doc (I believe it is called collaborative coding), there is a Floobits plugin for IntelliJ's IDE and in particular Android Studio.
You can watch two videos explaining how to set up and use the plugin on IntelliJ's blog.
Upvotes: 3
Reputation: 2958
Best practice is to use some VCS (version control system). Version Control Systems lets you manage project and allows to collaborate.
There are many VCSs like git, Mercurial, CVS and many many more. Android Studio has inbuilt support for GIT, CVS, Mercurial, Subversion. So you can go for any of those to work with android studio. Nowadays most used and popular VCS is GIT. And I personally recommend it.
There are many websites which allows you to create, maintain and collaborate online project using git. Here are few of them:
Before start using git, it is advised to go through GIT guide.
Upvotes: 4