日々精進

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

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

compile 'com.android.support:appcompat-v7:20.+'をbuild.gradleに追加すると「This support library should not use a lower version」エラー

原因はcompileSdkVersionで指定しているバージョンより古いバージョン用のsupport libararyを使用していたため。 compile 'com.android.support:appcompat-v7:20.+' を compile 'com.android.support:appcompat-v7:21.+' に修正すると直った。 参考: Androi…