From: Bartek Przybylski Date: Mon, 25 Jun 2012 17:46:14 +0000 (+0200) Subject: add buildscripts for environment setup and building with ant X-Git-Tag: oc-android-1.4.3~338 X-Git-Url: http://git.linex4red.de/pub/Android/ownCloud.git/commitdiff_plain/7578a726b3e4c330025c11245ec694a8e99f6d0c?hp=-c add buildscripts for environment setup and building with ant --- 7578a726b3e4c330025c11245ec694a8e99f6d0c diff --git a/README.setup b/README.setup new file mode 100644 index 00000000..8a1a2ce6 --- /dev/null +++ b/README.setup @@ -0,0 +1,11 @@ +If you want to start development of ownCloud android client you have two way to do so +(a) building with console +(b) building with eclipse + +1. Use setup_env.sh +2a. ant clean;ant debug +2b. Open Eclipse and import actionbarsherlock/library project to your workspace + +after those space you should be good to go. + +HAVE FUN! diff --git a/build.xml b/build.xml new file mode 100644 index 00000000..2221a7d7 --- /dev/null +++ b/build.xml @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/setup_env.sh b/setup_env.sh new file mode 100755 index 00000000..7ac09abe --- /dev/null +++ b/setup_env.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +git submodule init +git submodule update +android update project -p actionbarsherlock/library +android update project -p . +