i am working in an app for my self, nothing big,nothing for customer.i am working with 2 friends and we d like to know the best way to share the project in order to work in the meantime. We are using dropbox,but we are not sure is the best way because some times it gets errors. we putted all of the file system in dropbox. Then in local everyone imported the file from dropbox so we can have changes in real time. I mean i work in an activity while my friend is setting the layout ecc. The problem is that sometimes some files are missing or not sync properly.
-
that's really unclear. – jhamon Dec 02 '14 at 09:46
-
i know, the problem is my english level. Now we putted all of the file system in dropbox. Then in local everyone imported the file from dropbox so we can have changes in real time. I mean i work in an activity while my friend is setting the layout ecc. The problem is that sometimes some files are missing or not sync properly. – Alessandro Bovo Dec 02 '14 at 10:10
4 Answers
GIT (github.com,bitbucket.org) for version controlling and code management its the best
trello if you want to discuss on some bug issue , feature etc... its free too...
Redmine is a free and open source, web-based project management and issue tracking tool. It handles multiple projects and subprojects
Azendoo some use Evernote/Google Drive/Dropbox , but I have teammates who prefer other platforms. Azendoo works as a central hub and lets everyone use the storage system they have support for email for similar concept
Podio on the other hand also adds support or customer relationship managament (CRM)
WunderList in general a to do list doing stuff collaboratively

- 1,364
- 9
- 12
-
I would recommend `gitlab`instead of `github`because it support free for **private** projects, while `github` not – Blaze Tama Dec 02 '14 at 09:46
-
bitbucket.org gives unlimited private project and 4 developers on one project its a good option too... whatever suits you – Munawwar Hussain Shelia Dec 02 '14 at 09:49
-
Upvote and I suggest reading into which files can be ignored from git in order to work properly on Android with code management.Like here: http://stackoverflow.com/questions/8476376/typical-gitignore-file-for-an-android-app – cgew85 Dec 02 '14 at 09:52
As dragon born said, Git is a must-use !
Dropbox, is a quite good software for image / document sharing but not for code. SugarSync is good too.
For project management, there are a lot of software such as WunderList, Trello, Azendoo, Redmine, Podio and much more. So try some and see which one you like.

- 169
- 12
Version control
What you are looking for is version control. You might wonder why you need version control. Version control stores the code at a central place for all in your team to access it. This allows you to make sure that everyone in the group is using the latest version of the code.
Version control also allows you to store changes to file. Let say you and your friend change the same file at the same time and then you both upload it to a server like dropbox that you have tag. What happens is that the last person how uploaded will overwrite the code of the first person so that persons code will be lost. Version control handles this by keeping track of the changes and if two people change the same file it will try to resolve this by merge both changes in the file. This can not always be done automatically so most version controls will ask the last party at this point how you want the changes to be merge, but no code is just lost.
Version control creates a snapshot for every committed change so you can always go back to an earlier version if something goes wrong this is useful if some party merges a file incorrectly, or you want to try something you are not sure will work.
What version controls are there?
There are many different version controls to use.
How to create a version control project.
As you may have notice by now all of this software require a server of some sort. You can either host it on a server you own or you can use a free service. There are a few to choose from.
This are just a few example of the most popular, there are a lot more option out there if you look. Read up on them and choose the one that fits you the best.

- 1,875
- 2
- 28
- 53