2015-11-24 248 views
6

當我嘗試運行我的項目,這在Android Studio的偉大工程1.5我收到以下錯誤:搖籃錯誤:

Error:Access to the dex task is now impossible, starting with 1.4.0 
1.4.0 introduces a new Transform API allowing manipulation of the .class files. 
See more information: http://tools.android.com/tech-docs/new-build-system/transform-api 

我看到了一些問題,在這裏關於這個錯誤,但所有的答案都是將gradle降級到1.3版本,這是我無法用新的Android Studio和即時運行選項完成的。

有沒有解決這個問題的另一種方法?

在此先感謝。

+0

Android Studio 2.0或1.5?您使用哪個版本的gradle和gradle插件? –

+0

Android studio 2.0,帶有gradle 2.8和2.0 alpha的gradle構建工具。 –

+2

我認爲你必須改變一些你的任務。錯誤跟蹤器中存在一個問題:https://code.google.com/p/android/issues/detail?id=191782&q=label%3AReportedBy-Developer&colspec=ID%20Type%20Status%20Owner%20Summary%20Stars –

回答

3

我能夠在我的build.gradle擴大最大堆大小 添加到您的Android閉合來解決這個:

dexOptions { 
    javaMaxHeapSize "4g" 
} 

不知道它有什麼用新的API做

+1

它不工作 –