Skip to content

Commit a34f75f

Browse files
committed
update missed runtime-libraries
1 parent 74dc344 commit a34f75f

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

build.xml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
<property name="mainjar" value="${ant.project.name}.jar" />
1414
<property name="ddmlib" value="ddmlib-24.2.3.jar" />
1515
<property name="log4j" value="log4j-1.2.17.jar" />
16+
<property name="common" value="common-24.2.3.jar" />
17+
<property name="kxml" value="kxml2-2.3.0.jar" />
18+
<property name="guava" value="guava-17.0.jar" />
19+
<property name="annotations" value="annotations-24.2.3.jar" />
1620

1721
<target name="init">
1822
<!-- Create the time stamp -->
@@ -23,7 +27,7 @@
2327

2428
<target name="compile" depends="init" description="compile the source ">
2529
<!-- Compile the java code from ${src} into ${build} -->
26-
<javac nowarn="true" srcdir="${src}" destdir="${build}" classpath="${lib}/${ddmlib};${lib}/${log4j}" debug="on" />
30+
<javac nowarn="true" srcdir="${src}" destdir="${build}" classpath="${lib}/${common};${lib}/${guava}};${lib}/${annotations}};${lib}/$kxml};${lib}/${ddmlib};${lib}/${log4j}" debug="on" />
2731
</target>
2832

2933
<target name="dist" depends="compile" description="generate the distribution">
@@ -35,16 +39,20 @@
3539
<attribute name="Main-Class" value="org.eclipse.jdt.internal.jarinjarloader.JarRsrcLoader" />
3640
<attribute name="Rsrc-Main-Class" value="com.github.xsavikx.android.screencast.Main" />
3741
<attribute name="Class-Path" value="." />
38-
<attribute name="Rsrc-Class-Path" value="./ ${ddmlib} MyInjectEventApp.jar ${log4j} ${android}" />
42+
<attribute name="Rsrc-Class-Path" value="./ ${guava} ${annotations} ${common} ${kxml} ${ddmlib} MyInjectEventApp.jar ${log4j}" />
3943
<attribute name="Built-By" value="${user.name}" />
4044
<attribute name="Permissions" value="all-permissions" />
4145
<attribute name="Application-Name" value="Android Screencast" />
4246
</manifest>
4347
<zipfileset src="jar-in-jar-loader.zip" />
4448
<fileset dir="${build}" />
4549
<fileset dir="${src}" />
50+
<zipfileset dir="${lib}" includes="${common}" />
51+
<zipfileset dir="${lib}" includes="${kxml}" />
4652
<zipfileset dir="${lib}" includes="${ddmlib}" />
4753
<zipfileset dir="${lib}" includes="${log4j}" />
54+
<zipfileset dir="${lib}" includes="${guava}" />
55+
<zipfileset dir="${lib}" includes="${annotations}" />
4856

4957
</jar>
5058

lib/annotations-24.2.3.jar

7.83 KB
Binary file not shown.

lib/common-24.2.3.jar

78.9 KB
Binary file not shown.

lib/guava-17.0.jar

2.14 MB
Binary file not shown.

lib/kxml2-2.3.0.jar

42.8 KB
Binary file not shown.

0 commit comments

Comments
 (0)