今天,Google發佈了SDK 6 API 23+。Android appcompat v7:23
我試圖創建與API 23的一個項目,但我有以下問題:
無法解析:com.android.support:appcompat-v7:23.0
這裏是我的gradle產出文件:
android {
compileSdkVersion 23
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "my.package"
minSdkVersion 17
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
wearApp project(':wear')
compile 'com.android.support:appcompat-v7:23.0'
compile 'com.google.android.gms:play-services:7.8.0'
}
在SDK管理器,版本23未列出更新:
我該如何解決這個問題?
你應該等待幾個小時或幾天.. – Sheychan