无法写入文件pom.xml android

时间:2017-06-07 07:14:49

标签: android maven

无法将android库推送到maven。它给出了以下错误。 “无法编辑/../../pom.xml文件”.... 由InvalidUserDataException引起:范围映射的配置不是唯一的。请帮忙。

2 个答案:

答案 0 :(得分:0)

问题在于更新pom文件时的版本和范围映射。如果找到相同依赖项的多个映射,则抛出异常。 You can see it here for unique property mapping in spring。 对于Android,您必须使用标准maven插件Android Maven Plugin的更新版本。

这可能会对您有所帮助Repository link and integration details.

答案 1 :(得分:0)

到目前为止,我可以使用最新版本的 multidex androidx.multidex:multidex:2.0.1来解析InvalidUserDataException
我验证了使用androidx.multidex:multidex:2.0.0时发生的错误。
我还验证了当我继续将com.android.support:multidex:1.0.3android.enableJetifier=true结合使用时,不会不会发生该错误。