-
Notifications
You must be signed in to change notification settings - Fork 1
BuildInstructions
migueLoureiro edited this page Aug 19, 2015
·
15 revisions
- JDK 7 or above (last tested with Java version 1.8.0_60)
* [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)
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.
Check the Settings Example.