mirror of
https://github.com/moparisthebest/k-9
synced 2024-10-31 15:45:08 -04:00
. 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
11
build.xml
11
build.xml
@ -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.
Loading…
Reference in New Issue
Block a user