Our project was built  fine with SDK tool rev 6 and Ant version 1.7.1.
After updating the SDK tool to rev 7 we start seeing error:

if doesn't support the nested "istrue" element

below is ant task has istrue:

    <taskdef name="setup"
        classname="com.android.ant.SetupTask"
        classpathref="android.antlibs"/>
                <if>
                <!--  This work fine with SDK tool Rev 6  -->
                <istrue value="${build.debug}"/>
                <then>
                                <mkdir dir="${build.dist}/dbg_libs/"/>
                </then>
                <else>
                                <mkdir dir="${build.dist}/rel_libs/"/>
                </else>
        </if>

    <setup />

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

Reply via email to