日々精進

新しく学んだことを書き留めていきます

2015-05-20から1日間の記事一覧

build.gradleにcompile 'com.google.android.gms:play-services:5.0.89'を追加すると「Attribute “theme” has already been defined」エラー

原因はplay-servicesでAttribute “theme”が定義されているため。 compile 'com.google.android.gms:play-services:5.0.89' を compile 'com.google.android.gms:play-services:6.1.+' に変更すると直る 参考: Lollipop AppCompat-v7 21 - Attribute "theme"…