Carl wrote:
> Hello all,
> 
> When I was building some source code there was an error with resource
> files. I fixed the problem, but when I try to build again the source
> code using the command line, the same error shows up.
> 
> I presume the builder is using the same intermediary files, made in
> the previous build, so I would like to ask how I can either clean the
> module in question (without cleaning all the modules) or, where can I
> find and delete the intermediary files generated by a previous build.

Project > Clean in Eclipse, or delete the contents of bin/ and gen/ in
your project, such as via this Ant target:

    <target name="clean">
        <delete includeemptydirs="true">
            <fileset dir="bin" includes="**/*"/>
        </delete>
        <delete includeemptydirs="true">
            <fileset dir="gen" includes="**/*"/>
        </delete>
    </target>

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Need Android talent? Ask on HADO! http://wiki.andmob.org/hado

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to