属性“背景”已在Android Studio中使用不兼容的格式定义

时间:2016-08-05 07:43:16

标签: android eclipse android-studio attributes

我将项目从Eclipse导入Android Studio。由于它正在合并所有文件,我收到错误:Attribute "background" already defined with incompatible format.

检查我的以下库:

compile project(':staggeredGrid')
compile project(':mobikwikSDK')
compile 'com.android.support:support-v4:24.1.1'
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'

我是Android Studio的新手,所以我不知道如何解决这个问题。我试图更改该属性名称,但有许多相同的名称,所以我无法继续。

请帮我解决这个问题。

1 个答案:

答案 0 :(得分:6)

不推荐使用ActionBarSherlock,因此请迁移到AppCompat

删除

 compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'

添加

 compile 'com.android.support:appcompat-v7:24.1.1'