2013-03-14 01:32:44 +04:00
|
|
|
|
2013-10-24 11:35:53 +04:00
|
|
|
If you want to start help developing ownCloud please follow the [contribution guidlines][0] and observe these instructions:
|
2013-08-06 13:19:30 +04:00
|
|
|
|
|
|
|
1. Fork and download android/develop repository:
|
2013-10-21 11:29:05 +04:00
|
|
|
|
|
|
|
- NOTE: You must have git in your enviroment path
|
2013-08-06 13:19:30 +04:00
|
|
|
- Navigate to https://github.com/owncloud/android, click fork.
|
|
|
|
- Clone your new repo: "git clone git@github.com:YOURGITHUBNAME/android.git"
|
2013-10-21 11:29:05 +04:00
|
|
|
- "cd android"
|
2013-08-06 13:19:30 +04:00
|
|
|
- Checkout remote develop branch: "git checkout -b develop remotes/origin/develop"
|
2013-10-21 13:40:20 +04:00
|
|
|
- Pull changes from your develop branch: "git pull origin develop"
|
|
|
|
- Make sure to get the latest changes from official android/develop branch:
|
|
|
|
- Make official owncloud repo known as upstream: "git remote add upstream git@github.com:owncloud/android.git"
|
|
|
|
- Pull latest changes from upstream: "git pull upstream develop"
|
2013-03-14 01:32:44 +04:00
|
|
|
|
2013-10-21 11:29:05 +04:00
|
|
|
2. Building with console/maven:
|
2013-03-14 01:32:44 +04:00
|
|
|
|
2013-10-21 11:29:05 +04:00
|
|
|
- OPTIONAL, CONTINUE WITH STEP 3 IF NOT REQUIRED!
|
|
|
|
- NOTE: You must have mvn in your enviroment path
|
|
|
|
- Download/install Android plugin for Maven, then build ownCloud with mvn:
|
|
|
|
- "cd .."
|
|
|
|
- "git clone https://github.com/mosabua/maven-android-sdk-deployer.git"
|
|
|
|
- "cd maven-android-sdk-deployer"
|
|
|
|
- "mvn -pl com.simpligility.android.sdk-deployer:android-17 -am install"
|
|
|
|
- "cd ../android"
|
2013-08-06 13:19:30 +04:00
|
|
|
- Now you can create APK using "mvn package"
|
2013-03-14 01:32:44 +04:00
|
|
|
|
2013-10-21 11:29:05 +04:00
|
|
|
3. Building with Eclipse:
|
|
|
|
|
|
|
|
- NOTE: You must have android/tools, and 'platforms-tools' in your enviroment path
|
|
|
|
- Prepare building with Eclipse:
|
|
|
|
- "setup_env.bat" or "./setup_env.sh"
|
|
|
|
- Open Eclipse and create new "Android Project from Existing Code". As root choose android/actionbarsherlock/library
|
|
|
|
- Increase Android API level until project compiles. 14 should work.
|
|
|
|
- Clean project and compile.
|
|
|
|
- Make sure android/actionbarsherlock/library/bin/library.jar was created!
|
2013-08-06 16:42:42 +04:00
|
|
|
- Import OwnCloud Android project.
|
|
|
|
- Increase Android API level to 17.
|
2013-10-21 11:29:05 +04:00
|
|
|
- Clean project and compile.
|
2013-08-06 13:19:30 +04:00
|
|
|
- After those actions you should be good to go. HAVE FUN!
|
2013-10-21 11:29:05 +04:00
|
|
|
- NOTE: Even though API level is set to 17, APK also runs on older devices because in AndroidManifest.xml minSdkVersion is set to 8.
|
|
|
|
|
2013-08-06 13:19:30 +04:00
|
|
|
4. Create pull request:
|
|
|
|
|
2013-10-24 11:20:13 +04:00
|
|
|
- NOTE: You must sign the [Contributor Agreement][1] before your changes can be accepted!
|
2013-08-06 13:19:30 +04:00
|
|
|
- Commit your changes locally: "git commit -a"
|
|
|
|
- Push your changes to your Github repo: "git push"
|
2013-08-06 13:27:07 +04:00
|
|
|
- Browse to https://github.com/YOURGITHUBNAME/android/pulls and issue pull request
|
2013-08-06 13:19:30 +04:00
|
|
|
- Click "Edit" and set "base:develop"
|
|
|
|
- Again, click "Edit" and set "compare:develop"
|
|
|
|
- Enter description and send pull request.
|
2013-03-14 01:32:44 +04:00
|
|
|
|
|
|
|
|
2013-10-24 11:20:13 +04:00
|
|
|
[0]: https://github.com/owncloud/android/blob/master/CONTRIBUTING.md
|
|
|
|
[1]: http://owncloud.org/about/contributor-agreement/
|
2013-03-14 01:32:44 +04:00
|
|
|
|