Skip to content

Commit 7095a8a

Browse files
committed
reference to the correct core.jar
Signed-off-by: Umair Khan <[email protected]>
1 parent 8e59594 commit 7095a8a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919

2020
<target name="compile" description="Compile sources">
2121
<condition property="core-built">
22-
<available file="../processing/core/library/core.jar" />
22+
<available file="../processing-android/android-core.zip" />
2323
</condition>
24-
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../processing/core/library/core.jar" />
24+
<fail unless="core-built" message="Please build the core library first and make sure it sits in ../processing-android/android-core.zip" />
2525

2626
<mkdir dir="bin" />
2727
<javac source="1.6"
2828
target="1.6"
29-
srcdir="src" destdir="bin"
29+
srcdir="src" destdir="bin"
3030
encoding="UTF-8"
3131
includeAntRuntime="false"
32-
classpath="../processing/core/library/core.jar;${env.ANDROID_SDK}/platforms/android-21/android.jar"
32+
classpath="../processing-android/android-core.zip;${env.ANDROID_SDK}/platforms/android-21/android.jar"
3333
nowarn="true"
3434
compiler="org.eclipse.jdt.core.JDTCompilerAdapter">
3535
<compilerclasspath path="../processing/java/mode/org.eclipse.jdt.core.jar;../processing/java/mode/jdtCompilerAdapter.jar" />

0 commit comments

Comments
 (0)