2014-02-11 156 views
3

我遇到了proguard問題。我得到這個控制檯 我使用proguard 4.11。我可以解決這個問題嗎?Android - Proguard返回錯誤代碼1.請參閱控制檯

[2014-02-11 12:46:55 - Distributor] Proguard returned with error code 1. See console 
    [2014-02-11 12:46:55 - Distributor] Note: there were 4 duplicate class definitions. 
    [2014-02-11 12:46:55 - Distributor]  (http://proguard.sourceforge.net/manual/troubleshooting.html#duplicateclass) 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.content.res.XmlResourceParser extends or implements program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.content.Intent depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.content.IntentFilter depends on program class org.xmlpull.v1.XmlSerializer 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.content.IntentFilter depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.content.res.ColorStateList depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.graphics.drawable.ColorDrawable depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.graphics.drawable.Drawable depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.graphics.drawable.Drawable depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.graphics.drawable.Drawable depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.graphics.drawable.LevelListDrawable depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.view.LayoutInflater depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: library class android.view.LayoutInflater depends on program class org.xmlpull.v1.XmlPullParser 
    [2014-02-11 12:46:55 - Distributor] Warning: there were 12 instances of library classes depending on program classes. 
    [2014-02-11 12:46:55 - Distributor]   You must avoid such dependencies, since the program classes will 
    [2014-02-11 12:46:55 - Distributor]   be processed, while the library classes will remain unchanged. 
    [2014-02-11 12:46:55 - Distributor]   (http://proguard.sourceforge.net/manual/troubleshooting.html#dependency) 
    [2014-02-11 12:46:55 - Distributor] Error: Please correct the above warnings first. 
+0

控制檯消息給你兩個斷開的鏈接對這些讀了兩個問題。您仍然可以通過在Proguard頁面上進行手動 - >故障排除來查找信息。 – Simon

回答

6

我加入這行的ProGuard-project.txt

-dontwarn org.xmlpull.v1.** 

這行project.properties

proguard.config=proguard-project.txt 
+0

它幫助我創建構建,但生成的構建立即關閉。 – Srinivasan

相關問題