将maven Android项目导入eclipse时,我收到以下错误:
Could not update project assistance configuration
me.gladwell.eclipse.m2e.android.configuration.ProjectConfigurationException:
org.eclipse.core.runtime.CoreException: Could not resolve artifact android:android:pom:2.1_r2
在Package Explorer中,我在" MyProject"中的pom.xml文件中出错。和" MyProject-it"那说:
Missing artifact android:android:pom:2.1_r2
我已将Maven Android SDK Deployer克隆到我的驱动器并运行" mvn install"来自此文件夹根目录的命令,它成功运行了我需要的API。 我已在Android SDK管理器中确认已安装所有相关API,并且JAVA_HOME,ANDROID_HOME和M2_HOME的路径是正确的,但我仍然会收到此错误。
我在VMware btw中运行Ubuntu 14.04。
任何人都可以帮助/指出我的方向吗?
答案 0 :(得分:1)
以下是我找到的解决方案:
我发现我必须将父pom.xml文件中的<version>
标记从2.1_r2
更改为2.1_r3
。这解决了我的问题。