Skip to content

Commit c22ad69

Browse files
committed
update code name of the library
Signed-off-by: Umair Khan <[email protected]>
1 parent 95e4a03 commit c22ad69

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

build.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55

66
<target name="clean" description="Clean the build directories">
77
<delete dir="bin" />
8-
<delete file="library/video-android.jar" />
8+
<delete file="library/video_android.jar" />
99
</target>
1010

1111
<target name="build" depends="sdk_chatter,compile" description="Build video library for Processing Android" >
12-
<jar basedir="bin" destfile="library/video-android.jar" />
12+
<jar basedir="bin" destfile="library/video_android.jar" />
1313
</target>
1414

1515
<target name="sdk_chatter" unless="env.ANDROID_SDK">
@@ -36,32 +36,32 @@
3636
</target>
3737

3838
<target name="dist" depends="build" description="Creates distribution package">
39-
<mkdir dir="dist/tmp/video-android" />
39+
<mkdir dir="dist/tmp/video_android" />
4040

4141
<!-- copy library files (jar and gstreamer natives) -->
42-
<copy todir="dist/tmp/video-android/library">
42+
<copy todir="dist/tmp/video_android/library">
4343
<fileset dir="library" />
4444
</copy>
4545

4646
<!-- copy examples -->
47-
<copy todir="dist/tmp/video-android/examples">
47+
<copy todir="dist/tmp/video_android/examples">
4848
<fileset dir="examples" />
4949
</copy>
5050

5151
<!-- copy source -->
52-
<copy todir="dist/tmp/video-android/src">
52+
<copy todir="dist/tmp/video_android/src">
5353
<fileset dir="src" />
5454
</copy>
5555

5656
<!-- copy properties -->
57-
<copy file="library.properties" tofile="dist/tmp/video-android/library.properties" />
57+
<copy file="library.properties" tofile="dist/tmp/video_android/library.properties" />
5858

5959
<!-- create the java reference of the library -->
6060
<!--
61-
<mkdir dir="dist/tmp/video-android/reference" />
61+
<mkdir dir="dist/tmp/video_android/reference" />
6262
<javadoc bottom="Processing video library by The Processing Foundation. (c) 2011-14"
6363
classpath="../processing/core/library/core.jar;bin"
64-
destdir="dist/tmp/video-android/reference"
64+
destdir="dist/tmp/video_android/reference"
6565
verbose="false"
6666
stylesheetfile="resources/stylesheet.css"
6767
doctitle="Javadocs: Video library for Android"
@@ -76,11 +76,11 @@
7676
</javadoc> -->
7777

7878
<!-- create zip package -->
79-
<delete file="dist/video-android.zip"/>
80-
<zip destfile="dist/video-android.zip"
79+
<delete file="dist/video_android.zip"/>
80+
<zip destfile="dist/video_android.zip"
8181
basedir="dist/tmp"
8282
excludes="**/.DS_Store"
83-
/>
83+
/>
8484

8585
<!-- copy properties to use by download manager -->
8686
<copy file="library.properties" tofile="dist/video.txt" />

library/video-android.jar

-2.6 KB
Binary file not shown.

library/video_android.jar

6 KB
Binary file not shown.

0 commit comments

Comments
 (0)