Error: Warnings found during shrinking, please use -dontwarn or -ignorewarnings to suppress them

Error: Warnings found during shrinking, please use -dontwarn or -ignorewarnings to suppress them

我需要阅读来自 Gmail 应用程序的电子邮件,所以我下载了 mail.jar 、 activation.jar 和 additional.jar 并将它们放在应用程序文件夹下的库中,这一切都很好,但是当我 运行 我拿到的申请 收缩时发现警告,请使用-dontwarn或-ignorewarnings抑制。

所以我删除了它们并用这个依赖项替换它们:

  implementation 'com.sun.mail:android-mail:1.6.2'
    implementation 'com.sun.mail:android-activation:1.6.2'

但我遇到了同样的错误,有什么帮助吗?

在你的 proguard 文件中试试这个

#maybe
#-keep public class com.sun.mail.** { public *; }
-dontwarn com.sun.mail.**