前提・実現したいこと
androidアプリ開発初心者です。書籍とネットをしながら少しずつ進めています。
データベースの使い方を学ぼうと思い、以下の参考ページを見ながらrealmを試そうと思っています。
https://qiita.com/orimomo/items/bc1f2065f44104176f7f
行ったことはrealm導入として、以下の2項目を追加しただけです。
build.gradle(project:)のdepenciesに以下を追加。
kotlin
1dependencies { 2 classpath "io.realm:realm-gradle-plugin:6.0.2" 3 }
build.gradle(:app)に以下を追加。
kotlin
1apply plugin: 'kotlin-kapt' 2apply plugin: 'realm-android'
発生している問題・エラーメッセージ
以下のような、エラーが発生しました。
A problem occurred configuring root project 'MyMemo'. > Could not resolve all artifacts for configuration ':classpath'. > Could not find io.realm:realm-gradle-plugin:6.0.2. Searched in the following locations: - https://dl.google.com/dl/android/maven2/io/realm/realm-gradle-plugin/6.0.2/realm-gradle-plugin-6.0.2.pom - https://repo.maven.apache.org/maven2/io/realm/realm-gradle-plugin/6.0.2/realm-gradle-plugin-6.0.2.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.gradel(:app)は以下です。
kotlin
1plugins { 2 id 'com.android.application' 3 id 'kotlin-android' 4} 5apply plugin: 'kotlin-kapt' 6apply plugin: 'realm-android' 7 8android { 9 compileSdkVersion 30 10 buildToolsVersion "30.0.3" 11 12 defaultConfig { 13 applicationId "com.example.mymemo" 14 minSdkVersion 19 15 targetSdkVersion 30 16 versionCode 1 17 versionName "1.0" 18 19 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 20 } 21 22 buildTypes { 23 release { 24 minifyEnabled false 25 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 26 } 27 } 28 29 kotlinOptions { 30 jvmTarget = '1.8' 31 } 32 buildFeatures { 33 viewBinding true 34 } 35} 36 37dependencies { 38 39 implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" 40 implementation 'androidx.core:core-ktx:1.5.0' 41 implementation 'androidx.appcompat:appcompat:1.3.0' 42 implementation 'com.google.android.material:material:1.3.0' 43 implementation 'androidx.constraintlayout:constraintlayout:2.0.4' 44 implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5' 45 implementation 'androidx.navigation:navigation-ui-ktx:2.3.5' 46 testImplementation 'junit:junit:4.+' 47 androidTestImplementation 'androidx.test.ext:junit:1.1.2' 48 androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' 49}
build.gradle(project:)は以下です。
kotlin
1// Top-level build file where you can add configuration options common to all sub-projects/modules. 2buildscript { 3 ext.kotlin_version = "1.5.0" 4 repositories { 5 google() 6 mavenCentral() 7 } 8 dependencies { 9 classpath "com.android.tools.build:gradle:4.2.0" 10 classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" 11 classpath 'io.realm:realm-gradle-plugin:6.0.2' 12 13 // NOTE: Do not place your application dependencies here; they belong 14 // in the individual module build.gradle files 15 } 16} 17 18allprojects { 19 repositories { 20 google() 21 mavenCentral() 22 jcenter() // Warning: this repository is going to shut down soon 23 } 24} 25 26task clean(type: Delete) { 27 delete rootProject.buildDir 28}
試したこと
エラーメッセージやrealmの導入方法をググって対処方法を探してみましたが、探しきれませんでした・・・。
補足情報(FW/ツールのバージョンなど)
android studio 4.2