In general, I got a super mega old dead project on ANT
and actionbarsherlock
((((I want to transfer it to the gradle
but there was a problem. appcompat-v7
conflict and actionbarsherlock
because they use the same resources:
E:\gradle\DriverClient\app\build\intermediates\exploded-aar\com.google.android.gms\play-services-wallet\7.8.0\res\values\wallet_colors.xml Error:(2) Attribute "titleTextStyle" has already been defined Error:(2) Attribute "subtitleTextStyle" has already been defined Error:(2) Attribute "divider" has already been defined Error:(2) Attribute "background" has already been defined Error:(2) Attribute "backgroundSplit" has already been defined Error:(2) Attribute "navigationMode" has already been defined Error:(2) Attribute "displayOptions" has already been defined .............................
I tried to remove appcompat-v7
but it did not work for me. it is removed only if you also remove compile 'com.google.android.gms:play-services:7.8.0'
and I need them. How to fix it?
ActionBarSherlock
onSupportActionBar
AppPatMat - pavlofffcom.google.android.gms:play-services:
connect only what you needcom.google.android.gms:play-services-gcm:
- SorryForMyEnglishToolbar
. Google itself recommends discarding other things in favor of theToolbar
and I believe that they are right. Good luck! - Artem Komar