试图使用maven与android eclipse项目无法正常工作?

时间:2015-11-25 10:00:21

标签: java android eclipse maven eclipse-plugin

这是我第一次使用maven,我正在尝试集成 zopim sdk ,我按照教程将我的项目转换为maven项目并添加了存储库和依赖项,但现在eclipse不编译并给我以下错误:

/*! 
 @property contentsTransform
 @abstract Determines the receiver's contents transform. Animatable.
 */
@property(nonatomic) SCNMatrix4 contentsTransform;

我该怎么办?

修改

我的pom.xml文件

Description Resource    Path    Location    Type
Missing artifact com.android.support:appcompat-v7:jar:23.0.0    pom.xml /4SaleApp   line 2  Maven Dependency Problem
Missing artifact com.android.support:design:jar:23.0.0  pom.xml /4SaleApp   line 2  Maven Dependency Problem
Missing artifact com.android.support:recyclerview-v7:jar:23.0.0 pom.xml /4SaleApp   line 2  Maven Dependency Problem

1 个答案:

答案 0 :(得分:0)

从Gradle更改为Maven时,这似乎是一个相互矛盾的问题。 This个问题提供了有关该问题的更多信息。

但是看起来你错过了pom中的android支持依赖项。也许尝试将缺少的支持库添加到pom中。例如,如appcompat-v7所示here

<dependency>
    <groupId>android.support</groupId>
    <artifactId>compatibility-v7-appcompat</artifactId>
    <version>${compatibility.version}</version>
    <type>apklib</type>
</dependency>

<dependency>
    <groupId>android.support</groupId>
    <artifactId>compatibility-v7-appcompat</artifactId>
    <version>${compatibility.version}</version>
    <type>jar</type>
</dependency>