2015-07-02 37 views
1

我通过Android SDK管理器更新了一些支持库,现在我认为是ActionBarSherlock和支持库之间存在冲突。请参阅下面error.This的片断是Android Studio中1.2.2更新支持库后ActionBarSherlock依赖项问题

C:\Android\Games\Copy of MyProject1\MyProject\build\intermediates\exploded-aar\com.google.android.gms\play-services-wallet\7.5.0\res\values\wallet_colors.xml 
Error:(1) Attribute "titleTextStyle" has already been defined 
Error:(1) Attribute "subtitleTextStyle" has already been defined 
Error:(1) Attribute "divider" has already been defined 
Error:(1) Attribute "background" has already been defined 
Error:(1) Attribute "backgroundSplit" has already been defined 
Error:(1) Attribute "navigationMode" has already been defined 
Error:(1) Attribute "displayOptions" has already been defined 
Error:(1) Attribute "title" has already been defined 
Error:(1) Attribute "subtitle" has already been defined 
Error:(1) Attribute "icon" has already been defined 
Error:(1) Attribute "logo" has already been defined 
Error:(1) Attribute "backgroundStacked" has already been defined 

我gradle这个文件:

apply plugin: 'com.android.application' 

android { 
    compileSdkVersion 'Google Inc.:Google APIs:17' 
    buildToolsVersion "21.1.2" 

    defaultConfig { 
     applicationId "com.mdflip.areyoudrunk" 
     minSdkVersion 9 
     targetSdkVersion 17 
    } 

    buildTypes { 
     release { 
      minifyEnabled false 
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' 
     } 
    } 
} 

dependencies { 
    compile project(':ChartViewLib') 
    compile 'com.google.android.gms:play-services:+' 
    compile 'com.android.support:support-v4:22.0.0' 
    compile 'com.actionbarsherlock:actionbarsherlock:[email protected]' 
    compile('com.google.api-client:google-api-client-xml:1.17.0-rc') { 
     exclude group: 'com.google.android.google-play-services' 
    } 
} 

我曾试图消除支持库的依赖,但没有清理的问题。

回答

2

AFAIK,最新版Google Play服务附带appcompact-v7。这意味着您将无法同时使用Play服务(最新版本)和ActionbarSherlock。我建议迁移到AppCompactABS或不使用最新版本Play Services