. Added clean target

. Moved JAR representing code classes already in AOP so that they are not in our APK anymore. They get blocked out anyway at install time
This commit is contained in:
Bao-Long Nguyen-Trong 2009-09-15 05:21:55 +00:00
parent d61c7a192c
commit e4bc34ee82
4 changed files with 10 additions and 1 deletions

View File

@ -96,6 +96,9 @@
<!-- folder for the native libraries -->
<property name="native-libs-folder" value="libs" />
<!-- folder for the java libraries already in AOP but not in the official SDK -->
<property name="compile-only-libs-folder" value="compile-only-libs" />
<!-- Output directories -->
<property name="gen-folder" value="gen" />
<property name="out-folder" value="bin" />
@ -181,6 +184,7 @@
<src path="${gen-folder}" />
<classpath>
<fileset dir="${external-libs-folder}" includes="*.jar"/>
<fileset dir="${compile-only-libs-folder}" includes="*.jar"/>
<fileset dir="${sdk-location}/platforms/android-1.5/" includes="**/*.jar"/>
<pathelement path="${main-out-classes}"/>
</classpath>
@ -283,7 +287,12 @@
<arg path="${application-package}" />
</exec>
</target>
<target name="clean">
<delete dir="${out-folder}" />
<delete dir="${gen-folder}" />
</target>
<target name="help">
<!-- displays starts at col 13
|13 80| -->

Binary file not shown.

Binary file not shown.

Binary file not shown.