gpt4 book ai didi

java - 导出 .apk 时出现 Joda 时间和 ProGuard 错误

转载 作者:太空宇宙 更新时间:2023-11-03 11:49:35 25 4
gpt4 key购买 nike

在 Eclipse 中,当我导出 .apk 并启用 proguard 时,出现以下构建错误:

[2014-07-10 04:13:30 - VirginMobile] Proguard returned with error code 1. See console
[2014-07-10 04:13:30 - VirginMobile] Warning: org.joda.convert.JDKStringConverter$9: can't find referenced class javax.xml.bind.DatatypeConverter
[2014-07-10 04:13:30 - VirginMobile] Warning: org.joda.convert.JDKStringConverter$9: can't find referenced class javax.xml.bind.DatatypeConverter
[2014-07-10 04:13:30 - VirginMobile] Warning: org.joda.convert.JDKStringConverter$9: can't find referenced class javax.xml.bind.DatatypeConverter
[2014-07-10 04:13:30 - VirginMobile] You should check if you need to specify additional program jars.
[2014-07-10 04:13:30 - VirginMobile] Warning: there were 3 unresolved references to classes or interfaces.
[2014-07-10 04:13:30 - VirginMobile] You may need to specify additional library jars (using '-libraryjars').
[2014-07-10 04:13:30 - VirginMobile] java.io.IOException: Please correct the above warnings first.
[2014-07-10 04:13:30 - VirginMobile] at proguard.Initializer.execute(Initializer.java:321)
[2014-07-10 04:13:30 - VirginMobile] at proguard.ProGuard.initialize(ProGuard.java:211)
[2014-07-10 04:13:30 - VirginMobile] at proguard.ProGuard.execute(ProGuard.java:86)
[2014-07-10 04:13:30 - VirginMobile] at proguard.ProGuard.main(ProGuard.java:492)

无法在任何其他线程中找到解决方案。

我包括了 joda-time-2.3.jar 和 joda-convert-1.6.jar(除了三个错误之外,它消除了所有错误)。有人知道如何解决这个问题吗?

非常感谢。

最佳答案

Joda 类 org.joda.convert.JDKStringConverter 使用了 Java API 类 javax.xml.bind.DatatypeConverter,它在 Android API 中不可用.

如果您实际上不使用 JDKStringConverter 类,Joda 可能仍可在 Android 上运行,但 ProGuard 会尝试确保满足所有依赖项。

您可以尝试使用“-dontwarn javax.xml.bind.DatatypeConverter”选项告诉 ProGuard 忽略缺少的依赖项。

关于java - 导出 .apk 时出现 Joda 时间和 ProGuard 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24672778/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com