Skip to content
migueLoureiro edited this page Aug 19, 2015 · 15 revisions

Pre-requirements


* [Ant Build System](http://ant.apache.org/bindownload.cgi) (last Tested with Ant 1.9.3)
* [Gradle Build System](https://gradle.org/gradle-download/) (last tested with Gradle 2.4)

Clone Github Project

Use this command to clone project incluinding its modules:
$git clone --recursive https://github.com/LSTS/accl.git
You need to specify the location of Android SDK, usually its /home/user/android/sdk, in the file local.properties.
Change to the main folder of the project and build the library files with ant:
$cd accl
$ant
Include the files in outputs/ folder in your project, and you are ready to go.
accl.jar includes only the Java core. Can be used outside Android Environment.
accl.aar includes the Java core plus the Android Components including Activity, Fragment and Service which you should extend and use in your app for better consistency.

Clone this wiki locally