2016-09-30 71 views
1

以下警告會導致構建apk失敗。Android BUILD FAILED while release apk

Warning:jcifs.http.NetworkExplorer: can't find referenced method 'java.util.Enumeration getInitParameterNames()' in program class jcifs.http.NetworkExplorer. 

任何幫助表示讚賞。
在此先感謝。

+0

你想包括一些相關的代碼,或者是警告一個問題嗎? –

+3

發佈有關該錯誤的更多信息,如果可能的話,一些代碼會很好。 –

+1

在proguard文件中提及-dontwarn jcifs.http。**然後編譯。 – VVB

回答

3

添加這在progaurd文件

-keep class jcifs.** { *; } 
-dontwarn jcifs.http.** 
+0

很多很多謝謝你,你修好了。 – 1911192110920