4

Ниже приведены мои зависимости приложенияАтрибут "titleTextStyle" уже определен в android studio 1.2.1?

dependencies { 
    compile fileTree(dir: 'libs', include: ['*.jar']) 
    compile 'com.android.support:appcompat-v7:22.1.1' 
    // compile 'com.android.support:support-v13:21.0.3' 
    compile 'com.actionbarsherlock:actionbarsherlock:[email protected]' 
    compile 'com.android.support:recyclerview-v7:21.0.0' 
    compile 'com.android.support:cardview-v7:21.0.0' 
    compile 'com.squareup.picasso:picasso:2.4.0' 
    compile 'com.jakewharton:butterknife:5.1.2' 
    compile files('src/libs/android_sync_service_library.jar') 
    compile files('src/libs/gson-2.2.4.jar') 
    compile 'com.google.android.gms:play-services:7.3.0' 
    compile('com.crashlytics.sdk.android:crashlytics:[email protected]') { 
     transitive = true; 
    } 
    compile project('my module name') 
} 

и мой модуль зависимости

dependencies { 
    compile project(':ingosdk') 
    compile 'com.google.code.gson:gson:2.2.4' 
    compile files('libs/A2iA.Mobility.jar') 
    compile files('libs/acra-4.5.0.jar') 
    compile files('libs/bugsense-3.5.jar') 
    compile files('libs/deviceprint-lib-1.0.0.jar') 
    compile files('libs/espresso-1.1-bundled.jar') 
    compile files('libs/FlurryAnalytics-5.3.0.jar') 
    compile files('libs/httpmime-4.1.2.jar') 
    compile files('libs/libGoogleAnalyticsServices.jar') 
    compile files('libs/volley.jar') 
} 

Я использую ActionBarSherlock в моем модуле и AppCompat библиотека v7 в моем приложении. В моем случае оба требуются. Как я могу решить проблему с атрибутом, уже определенным?

Варианты, которые я использую в моем приложении:
buildToolsVersion 22.0.1
targetSdkVersion 21

ответ

10

Вы не можете использовать AppCompat-v7 и ActionBarSherlock в то же время, использовать только один из них.