taskdef class com.android.ant.NewSetupTask cannot be found

來源:互聯網
上載者:User

這兩天更新到最新的ADT與SDK,但是打包的時候卻出現如題的錯誤,是我的ANT檔案中引用了:

    <!-- jar file from where the tasks are loaded -->    <path id="android.antlibs">        <pathelement path="${sdk.dir}/tools/lib/anttasks.jar" />    </path>    <!-- Custom tasks -->    <taskdef name="setup"            classname="com.android.ant.NewSetupTask"            classpathref="android.antlibs" />

後來,用JD-Gui查看anttasks.jar中確實沒有com.android.ant.NewSetupTask,坑爹啊。

在網上也沒有搜尋到,沒辦法只好先用同事機器上舊的anttasks.jar.

是不是移動到哪個JAR包中了呢?

對比了代碼,應該是 com.android.ant.NewSetupTask 被分解成幾個小類了:CheckEnvTask, GetTypeTask, GetTargetTask

NewSetupTask = CheckEnvTask + GetTypeTask + GetTargetTask + ...

得把之前的setup 一個個分解,暈

之前的

<setup

....

/>

====》

<CheckEnvTask />
<gettypetask
projectTypeOut="android.project.type"/>
<gettargettask
androidJarFileOut="android.jar"
androidAidlFileOut="android.aidl"
targetApiOut="target.api"
bootclasspathrefOut="android.target.classpath"/>

....

也可以參考:/opt/android-sdk-linux_x86/tools/ant/build.xml檔案,這個也是更新過的了

<!-- Pre build setup -->    <target name="-build-setup" depends="-setup">....<!-- Basic Ant + SDK check -->    <target name="-check-env">        <checkenv />    </target>    <!-- target to disable building dependencies -->    <target name="nodeps">        <property name="dont.do.deps" value="true" />    </target>    <!-- generic setup -->    <target name="-setup" depends="-check-env">        <echo level="info">Project Name: ${ant.project.name}</echo>        <gettype projectTypeOut="project.type" />...
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.