AndroidStudio初心者です。先日Kotlinのアップデートを行ったところ、<Gradleスクリプト>下の<build.gradle>に加えた変更が反映されず「Gradleプロジェクトの同期に失敗しました」という注意書きが出てしまいます。
ネットに似たような事例がのっていたので確認してみましたが、解決できません。
・build.gradleに記述されているkotlinのバージョンと、<設定>から確認できるkotlinのバージョンが違う
同じだった。
URLをクリックすると「not found」の文字が(リンク切れ?)。
・build.gradle(project:..)内のrepositories項目にjcenter()を追加する
変わらずエラーが出てしまう。
エラー文のどこに注目すればいいかが分かっておらず、上の行動もだいぶ見当はずれだと思います。何が問題なのか、少しでもわかる方がいらっしゃいましたら、教えていただけますと幸いです。
環境:
windowsOS
AndroidStudio4.2
エラー文:
A problem occurred configuring root project 'Janken'.
-Could not resolve all artifacts for configuration ':classpath'.
-Could not find org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.0-release-764.
Searched in the following locations:
-https://dl.google.com/dl/android/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.5.0-release-764/kotlin-gradle-plugin-1.5.0-release-764.pom
-https://jcenter.bintray.com/org/jetbrains/kotlin/kotlin-gradle-plugin/1.5.0-release-764/kotlin-gradle-plugin-1.5.0-release-764.pom
Required by:
project :
Possible solution:
-Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
ソースコード:
<build.gradle(project:...)>
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.5.0-release-764"
ext.android_plugin_version = '4.2'
repositories {
google()
jcenter()
//maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
} dependencies { classpath "com.android.tools.build:gradle:4.2.0" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files }
}
...(以下略)
ソースコード:
<app/build.gradle>
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig { applicationId "com.example.janken" minSdkVersion 23 targetSdkVersion 30 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' }
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation 'androidx.core:core-ktx:1.3.1' implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'com.google.android.material:material:1.2.1' implementation 'androidx.constraintlayout:constraintlayout:2.0.1' testImplementation 'junit:junit:4.+' androidTestImplementation 'androidx.test.ext:junit:1.1.2' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/14 09:59
2021/05/18 01:55