我需要在我的项目中使用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不兼容,因为您可以看到here。
使用gradle在项目中使用ActionBarSherlock
和SwipeListView
的正确方法是什么?
答案 0 :(得分:0)
我在构建期间排除了appcompat-v7 lib。它似乎工作到目前为止。但我担心它可能会在某些设备上崩溃
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以查看是否需要依赖项。