diff --git a/.gitignore b/.gitignore index 63a7b4f2..8d9e3380 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ bin gen .* -build.xml local.properties *.ipr *.iws diff --git a/README b/README index e7b7adac..6cba150c 100644 --- a/README +++ b/README @@ -3,3 +3,5 @@ Vanilla Music Player is a music player for Android To build, assuming you have the Android SDK installed and in your path: android update project --name VanillaMusic --path . ant debug (or ant release) + +Javadocs can be generated using 'ant doc' diff --git a/build.xml b/build.xml new file mode 100644 index 00000000..e75a06e1 --- /dev/null +++ b/build.xml @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/doc.sh b/doc.sh deleted file mode 100755 index bcf8afcf..00000000 --- a/doc.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh -sdk=`grep sdk.dir= local.properties` -sdk=${sdk#sdk.dir=} -target=`grep target= project.properties` -target=${target#target=} -exec javadoc -classpath "$sdk/platforms/$target/android.jar" -d doc -sourcepath src -private org.kreed.vanilla