. 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:
parent
d61c7a192c
commit
e4bc34ee82
4 changed files with 10 additions and 1 deletions
11
build.xml
11
build.xml
|
@ -96,6 +96,9 @@
|
||||||
<!-- folder for the native libraries -->
|
<!-- folder for the native libraries -->
|
||||||
<property name="native-libs-folder" value="libs" />
|
<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 -->
|
<!-- Output directories -->
|
||||||
<property name="gen-folder" value="gen" />
|
<property name="gen-folder" value="gen" />
|
||||||
<property name="out-folder" value="bin" />
|
<property name="out-folder" value="bin" />
|
||||||
|
@ -181,6 +184,7 @@
|
||||||
<src path="${gen-folder}" />
|
<src path="${gen-folder}" />
|
||||||
<classpath>
|
<classpath>
|
||||||
<fileset dir="${external-libs-folder}" includes="*.jar"/>
|
<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"/>
|
<fileset dir="${sdk-location}/platforms/android-1.5/" includes="**/*.jar"/>
|
||||||
<pathelement path="${main-out-classes}"/>
|
<pathelement path="${main-out-classes}"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
@ -283,7 +287,12 @@
|
||||||
<arg path="${application-package}" />
|
<arg path="${application-package}" />
|
||||||
</exec>
|
</exec>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="clean">
|
||||||
|
<delete dir="${out-folder}" />
|
||||||
|
<delete dir="${gen-folder}" />
|
||||||
|
</target>
|
||||||
|
|
||||||
<target name="help">
|
<target name="help">
|
||||||
<!-- displays starts at col 13
|
<!-- displays starts at col 13
|
||||||
|13 80| -->
|
|13 80| -->
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue