如何从 android 中的 pom.xml 文件创建 gradle 依赖项?
Posted
技术标签:
【中文标题】如何从 android 中的 pom.xml 文件创建 gradle 依赖项?【英文标题】:How to create gradle dependency from pom.xml file in android? 【发布时间】:2021-09-15 19:18:07 【问题描述】:我正在使用https://www.route4me.com Route4me api 与 android 应用程序进行路由优化。我需要添加 route4me api 的 gradle 依赖项,但在 documemt https://github.com/route4me/route4me-java-sdk 中没有找到 gradle 依赖项。只有一个 pom.xml 文件有maven 依赖项。如何将此 route4me pom.xml 转换为 gradle 依赖项? 我尝试使用 implementation 'com.route4me:route4me-java-sdk:RELEASE-1.3.1' 并添加这个 maven 网址“https://www.route4me.com” 进入 build.gradle 项目,但发生错误。无法解决:com.route4me:route4me-java-sdk:RELEASE-1.3.1
【问题讨论】:
【参考方案1】:快速浏览他们的支持页面,分析 github 上的 pom 文件并搜索所有主要的 Maven 存储库表明他们尚未将此包作为构建库发布到任何地方。
因此不能作为普通依赖使用,需要自己编译源码。
【讨论】:
以上是关于如何从 android 中的 pom.xml 文件创建 gradle 依赖项?的主要内容,如果未能解决你的问题,请参考以下文章
maven pom xml文件中的错误:构建Android项目[重复]