2016-09-19 54 views
-1

當我嘗試運行我的應用程序與Android工作室2.2它的給我這樣的compileJava錯誤。Android 2.2 compileJava錯誤

不能訪問Transform類文件未找到

org.simpleframework.xml.transform.Transform可以在任何一個請幫我理解這個問題。我會非常感激。

在此先感謝。

回答

0

我有類似的問題。將以下代碼段添加到您的應用中build.gradle

andriod { 
packagingOptions { 
     /** 
     * The following two lines are added to resolve an error with 
     * Android studio 2.2 version's duplicate file exception 
     */ 
     exclude 'META-INF/LICENSE' 
     exclude 'META-INF/LICENSE.txt' 
    } 
}