Android サポート ライブラリを使用してアプリを作成しようとしています。そのため、基本的なアクティビティで新しいプロジェクトを開始し、依存関係メニューを使用して Android サポート ライブラリを追加すると、次のエラーが発生します。
This support library should not use a different version (24) than the `compileSdkVersion` (23)
これは私のgradleファイルがどのように見えるかです:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "24.0.0"
defaultConfig {
applicationId "com.example.moore.criminalintent"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:24.0.0'
}
プロジェクトの作成と依存関係の追加を除いて、他の設定には触れていません。これを解決するための助けをいただければ幸いです。