From 7578a726b3e4c330025c11245ec694a8e99f6d0c Mon Sep 17 00:00:00 2001 From: Bartek Przybylski Date: Mon, 25 Jun 2012 19:46:14 +0200 Subject: [PATCH] add buildscripts for environment setup and building with ant --- README.setup | 11 ++++++++ build.xml | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ setup_env.sh | 7 +++++ 3 files changed, 101 insertions(+) create mode 100644 README.setup create mode 100644 build.xml create mode 100755 setup_env.sh 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 . + -- 2.11.0