2 If you want to start development of ownCloud first download required files, then compile using console or Eclipse, finally create pull request:
4 1. Fork and download android/develop repository:
6 - Navigate to https://github.com/owncloud/android, click fork.
7 - Clone your new repo: "git clone git@github.com:YOURGITHUBNAME/android.git"
8 - Checkout remote develop branch: "git checkout -b develop remotes/origin/develop"
10 2. Building with console:
12 - Use setup_env.sh or setup_env.bat
13 - NOTE: You must have mvn, git, ant/bin, android/tools, and 'platforms-tools' in your enviroment path
14 - Now you can create APK using "mvn package"
16 3. Building with eclipse:
18 - TODO: FIX / MORE DETAILS
19 - Run "ant clean debug"
20 - Open Eclipse and import *actionbarsherlock/library* project to your workspace
21 - NOTE: You must have 'tools' and 'platforms-tools' in your path in order to run setup_env.sh
22 - After those actions you should be good to go. HAVE FUN!
24 4. Create pull request:
26 - Commit your changes locally: "git commit -a"
27 - Push your changes to your Github repo: "git push"
28 - Browse to https://github.com/YOURGITHUBNAME/android/pulls and issue pull request
29 - Click "Edit" and set "base:develop"
30 - Again, click "Edit" and set "compare:develop"
31 - Enter description and send pull request.