realmの導入をしたいのですがエラーが出てSyncが完了しません
環境
Android studio Arctic Fox Patch3
Kotlin
最小API 21
以下のサイトを参考にrealmを導入しようとしています。
https://mo-gu-mo-gu.com/android-memo-app-tutorial/
root配下にある build.gradle にclasspath "io.realm:realm-gradle-plugin:6.0.0"を追記
app 配下にある build.gradle のpluginsに
id 'kotlin-android-extensions'
id 'kotlin-kapt'
id 'realm-android'
と追記し、Sync nowを押下したところエラーメッセージが出ました。
発生している問題・エラーメッセージ
A problem occurred configuring root project 'MemoSample'. > Could not resolve all artifacts for configuration ':classpath'. > Could not find io.realm:realm-gradle-plugin:6.0.0. Searched in the following locations: - https://dl.google.com/dl/android/maven2/io/realm/realm-gradle-plugin/6.0.0/realm-gradle-plugin-6.0.0.pom - https://repo.maven.apache.org/maven2/io/realm/realm-gradle-plugin/6.0.0/realm-gradle-plugin-6.0.0.pom Required by: project : Possible solution: - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
該当のソースコード
root配下にある build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { repositories { google() mavenCentral() } dependencies { classpath "com.android.tools.build:gradle:7.0.3" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0" classpath "io.realm:realm-gradle-plugin:6.0.0" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } task clean(type: Delete) { delete rootProject.buildDir }
app 配下にある build.gradle
plugins { id 'com.android.application' id 'kotlin-android' id 'kotlin-android-extensions' id 'kotlin-kapt' id 'realm-android' } android { compileSdk 31 defaultConfig { applicationId "com.donsoku.android.memosample" minSdk 21 targetSdk 31 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 'androidx.core:core-ktx:1.7.0' implementation 'androidx.appcompat:appcompat:1.4.0' implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.2' testImplementation 'junit:junit:4.+' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' }
試したこと
root配下にある build.gradleの該当パスを6.0.0から6.0.2に変更したり
app 配下にある build.gradleのpluginsの箇所を参考サイト通りに変更してみたのですが、
解決できませんでした。
翻訳したエラーメッセージに「ルートプロジェクト「MemoSample」の設定で問題が発生しました。
構成 ':classpath'のすべてのアーティファクトを解決できませんでした。
io.realm:realm-gradle-plugin:6.0.0が見つかりませんでした。
次の場所で検索されました。」とあることから、classPathがおかしいのかと思いますが、対応策が見つかりませんでした。
回答1件
あなたの回答
tips
プレビュー