2017-01-10 118 views
0

我的項目是工作的罰款,我停止開發了一個星期,當我回來的時候,當我建立的項目,我得到這個異常:錯誤:執行失敗的任務「:應用程序:transformClassesWithPreJackRuntimeLibrariesForDebug」

Error:Execution failed for task ':app:transformClassesWithPreJackRuntimeLibrariesForDebug'. > com.android.sched.scheduler.RunnerProcessException: Error during 'ReachingDefinitions' runner on 'static void org.mozilla.universalchardet.prober.contextanalysis.JapaneseContextAnalysis. 

我試圖改變org.gradle.jvmargs=-Xmx1024m,實際上是1536. 沒有變化。

這是什麼例外?如何解決它? 謝謝。

更新: 我打算在這個項目中使用數據綁定。顯然,

apply plugin: 'com.android.databinding' 

classpath 'com.android.databinding:dataBinder:1.0-rc4' 

造成了他的行爲。 問題是爲什麼?

回答

0

你只需要啓用DataBindingbuild.gradle使用它

android{ 
    defaultConfig{ 
     dataBinding { 
      enabled true 
     } 
    } 
} 
+1

哦,謝謝。我一定在我觀看的視頻教程中錯過了它) – Sermilion

相關問題