0

我需要在我的项目中使用ActionBarSherlock和。SwipeListView我在 build.gradle 文件中添加了以下依赖项:

compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
compile('com.fortysevendeg.swipelistview:swipelistview:1.0-SNAPSHOT@aar') {
   transitive = true
}

我收到以下错误:Attribute xxx has already been defined。我想这个问题是因为SwipeListView使用 appcompat-v7 作为依赖项,并且ActionBarSherlock和 v7 不兼容,如您在此处看到的那样。

在我的项目中使用 gradleActionBarSherlock的正确方法是什么?SwipeListView

4

1 回答 1

0

我在构建期间排除了 appcompat-v7 库。到目前为止它似乎有效。但我担心它可能会在某些设备上崩溃

compile ('com.fortysevendeg.swipelistview:swipelistview:1.0-SNAPSHOT@aar') {
        transitive = true
        exclude module: 'support-v4'
        exclude module: 'appcompat-v7'
        compile 'com.android.support:support-v4:13.0.0'
    }

我打开了一个问题:https ://github.com/47deg/android-swipelistview/issues/191看看是否需要依赖。

于 2014-10-22T17:10:48.830 回答