前提・実現したいこと
Androidstudioでrealmを実装したいのですが
準備としてプロジェクトのbuild.gradleとモジュールのbuild.gradleにコードを記載し、
メニューのビルド(B)からプロジェクトをクリーンにするを選択したのですが
以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
Could not find io.realm:realm-gradle-plugin:10.0.1.
該当のソースコード
・プロジェクトの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:4.2.1"
classpath "io.realm:realm-gradle-plugin:10.0.1"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
・モジュールのbuild.gradle
plugins {
id 'com.android.application'
id 'realm-android'
}
android {
compileSdkVersion 30
defaultConfig { applicationId "com.example.dbrealmj" minSdkVersion 16 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 }
}
dependencies {
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'
}
試したこと
realmのホームページに記載されていた
https://docs.mongodb.com/realm-legacy/jp/docs/java/0.83.1/index.html
手順に従い最新版のRealmをダウンロードしてzipファイルを展開しましたが
3.realm-VERSION.jarをapp/libsフォルダにコピーします。とありますが展開した中に
realm-VERSION.jarというファイルが存在しませんでした。
補足情報(FW/ツールのバージョンなど)
Androidstudio 4.2.1
回答1件
あなたの回答
tips
プレビュー