Android Studioを最新バージョン(3.1 Canary 8)に更新し、com.Android.tools.build:gradleをバージョン3.1.0-alpha08に強制的に更新しましたが、プロジェクトを同期するとこのエラーが発生します:
Could not find sdk-common.jar (com.Android.tools:sdk-common:26.1.0-alpha08).
Searched in the following locations:
https://maven.google.com/com/Android/tools/sdk-common/26.1.0-alpha08/sdk-common-26.1.0-alpha08.jar
周りを検索しましたが、解決策が見つかりませんでした。誰かがこの問題の解決を手伝ってくれますか
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.Android.tools.build:gradle:3.1.0-alpha07'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.2'
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
事前に感謝します。
更新:これは新しいbukd.gradle(プロジェクト):
buildscript {
repositories {
google()
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
dependencies {
classpath 'com.Android.tools.build:gradle:3.1.0-alpha08'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.2'
}
}
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com/'
name 'Google'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
知識のために;)公式ドキュメントで示唆されているように、リポジトリブロックでjcenter()の上にgoogle()を追加して修正しました: developer.Android.com/studio/build/index.html =