Gradle Attribute theme has already been defined
Gradleさんを勉強中です。
Google Play Serviceライブラリを読み込みたいので
dependencies{ compile 'com.android.support:appcompat-v7:21.0.+' compile 'com.google.android.gms:play-services:5.+' }
としていたところ
Gradle Attribute theme has already been defined
となりビルドできませんでした。
下記に同じような話が載っていたので
http://stackoverflow.com/questions/19843784/google-play-services-library-update-and-missing-symbol-integer-google-play-serv
dependencies{ compile 'com.android.support:appcompat-v7:21.0.+' compile 'com.google.android.gms:play-services:6.1.+' }
にしたところ、治りました!