以下警告会导致构建apk失败。


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



任何帮助表示赞赏。
提前致谢。

最佳答案

将此添加到您的proguard文件中

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

09-30 12:25