build.xml
changeset 359 dff3e3f715d9
parent 158 8189aa05293e
child 531 e344b51f93ff
equal deleted inserted replaced
358:6b9900c70fa1 359:dff3e3f715d9
    44         <pathelement path="${sdk-location}/tools/lib/jarutils.jar" />
    44         <pathelement path="${sdk-location}/tools/lib/jarutils.jar" />
    45     </path>
    45     </path>
    46 
    46 
    47     <taskdef name="setup"
    47     <taskdef name="setup"
    48         classname="com.android.ant.SetupTask"
    48         classname="com.android.ant.SetupTask"
    49 	classpathref="android.antlibs"/>
    49         classpathref="android.antlibs"/>
    50 
    50 
    51     <!-- Execute the Android Setup task that will setup some properties specific to the target,
    51     <!-- Execute the Android Setup task that will setup some properties specific to the target,
    52          and import the rules files.
    52          and import the rules files.
    53          To customize the rules, copy/paste them below the task, and disable import by setting
    53          To customize the rules, copy/paste them below the task, and disable import by setting
    54          the import attribute to false:
    54          the import attribute to false:
    56          
    56          
    57          This will ensure that the properties are setup correctly but that your customized
    57          This will ensure that the properties are setup correctly but that your customized
    58          targets are used.
    58          targets are used.
    59     -->
    59     -->
    60     <setup />
    60     <setup />
    61 	
       
    62 	  <target name="clean"
       
    63 		    description="Delete old build and dist directories">
       
    64 		<delete verbose="false" dir="${out-folder}"/>
       
    65 	    </target>
       
    66 
       
    67 	    <target name="javadoc" depends="aidl"
       
    68 	    	description="Build the javadoc">
       
    69 		<javadoc sourcepath="${source-folder}" destdir="${javadoc-output}">
       
    70 		    <classpath>
       
    71 			<fileset dir="${external-libs}" includes="*.jar" />
       
    72 		    </classpath>
       
    73 		</javadoc>	
       
    74 	    </target>
       
    75 </project>
    61 </project>