前提・実現したいこと
最近、「はじめてのAndroidプログラミング第五版」をもとにAndroidstudioの学習を始めました。
Realmを使用するためbuild.Grade(Module:app),build.Grade(Project;MyScheduler)を修正したのですが
同期が完了しません。
プログラミング歴も浅く、知識も乏しいのでエラーメッセージを調べても対処法がわかりません。
エラーの原因、解決の手順について教えてください。
発生している問題・エラーメッセージ
gradleプロジェクトの同期に失敗してしまいます。
該当のソースコード
kotlin
1//build.gradle 2 3// Top-level build file where you can add configuration options common to all sub-projects/modules. 4buildscript { 5 ext.kotlin_version = "1.5.10" 6 repositories { 7 google() 8 mavenCentral() 9 } 10 dependencies { 11 classpath "com.android.tools.build:gradle:4.2.2" 12 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 13 classpath "io.realm:realm-gradle-plugin:10.0.1" 14 15 16 // NOTE: Do not place your application dependencies here; they belong 17 // in the individual module build.gradle files 18 } 19} 20 21allprojects { 22 repositories { 23 google() 24 mavenCentral() 25 jcenter() // Warning: this repository is going to shut down soon 26 } 27} 28 29task clean(type: Delete) { 30 delete rootProject.buildDir 31}
kotlin
1//build.gradle app 2 3plugins { 4 id 'com.android.application' 5 id 'kotlin-android' 6 id 'kotlin-kapt' 7 id 'realm-android' 8} 9 10android { 11 compileSdkVersion 30 12 buildToolsVersion "30.0.3" 13 14 defaultConfig { 15 applicationId "com.example.myscheduler" 16 minSdkVersion 16 17 targetSdkVersion 30 18 versionCode 1 19 versionName "1.0" 20 21 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 22 } 23 24 buildTypes { 25 release { 26 minifyEnabled false 27 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 28 } 29 } 30 compileOptions { 31 sourceCompatibility JavaVersion.VERSION_1_8 32 targetCompatibility JavaVersion.VERSION_1_8 33 } 34 kotlinOptions { 35 jvmTarget = '1.8' 36 } 37 buildFeatures { 38 viewBinding true 39 } 40} 41 42dependencies { 43 44 implementation 'io.realm:android-adapters:2.2.1' 45 implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" 46 implementation 'androidx.core:core-ktx:1.6.0' 47 implementation 'androidx.appcompat:appcompat:1.3.1' 48 implementation 'com.google.android.material:material:1.4.0' 49 implementation 'androidx.constraintlayout:constraintlayout:2.1.0' 50 implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5' 51 implementation 'androidx.navigation:navigation-ui-ktx:2.3.5' 52 testImplementation 'junit:junit:4.+' 53 androidTestImplementation 'androidx.test.ext:junit:1.1.3' 54 androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' 55}
エラーは以下のようになりました。
A problem occurred configuring root project 'MyScheduler'. > Could not resolve all artifacts for configuration ':classpath'. > Could not find io.realm:realm-gradle-plugin:10.0.1. Searched in the following locations: - https://dl.google.com/dl/android/maven2/io/realm/realm-gradle-plugin/10.0.1/realm-gradle-plugin-10.0.1.pom - https://repo.maven.apache.org/maven2/io/realm/realm-gradle-plugin/10.0.1/realm-gradle-plugin-10.0.1.pom Required by: project : Possible solution: - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
補足情報(FW/ツールのバージョンなど)
まだkotlin初心者です。
アンドロイドスタジオバージョン
4.2.2
宜しくお願い致します。
あなたの回答
tips
プレビュー