前提・実現したいこと
Android Studio でRealmを使用したいですがbuild.gradleでエラーとなる。
発生している問題・エラーメッセージ
A problem occurred evaluating root project 'Qrread'.
Build was configured to prefer settings repositories over project repositories but repository 'MavenRepo' was added by build file 'build.gradle'
- Try:
Run with --info or --debug option to get more log output. Run with --scan to get full insights.
- Exception is:
以降省略
該当のソースコード
build.gradle(プロジェクト)
buildscript { repositories { mavenCentral() google() } dependencies { classpath "com.android.tools.build:gradle:7.0.3" classpath "io.realm:realm-gradle-plugin:10.8.0" } } allprojects { repositories { mavenCentral() google() } } task clean(type: Delete) { delete rootProject.buildDir }
build.gradle(:app)
plugins { id 'com.android.application' id 'realm-android' } android { compileSdk 31 defaultConfig { applicationId "com.example.qrread" minSdk 24 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 } } dependencies { implementation 'androidx.appcompat:appcompat:1.3.1' implementation 'com.google.android.material:material:1.4.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.1' testImplementation 'junit:junit:4.+' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation 'com.journeyapps:zxing-android-embedded:4.1.0' }
試したこと
build.gradle(プロジェクト)を次の通りに変更。
buildscript { repositories { mavenCentral() google() maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } jcenter() } dependencies { classpath "com.android.tools.build:gradle:7.0.3" classpath "io.realm:realm-gradle-plugin:10.8.0" } } allprojects { repositories { mavenCentral() google() maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } jcenter() } } task clean(type: Delete) { delete rootProject.buildDir }
jcenter()の2ヶ所共に消し線が引かれ
エラーメッセージが下記の通りとなった。
A problem occurred evaluating root project 'Qrread'.
Build was configured to prefer settings repositories over project repositories but repository 'MavenRepo' was added by build file 'build.gradle'
- Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
補足情報(FW/ツールのバージョンなど)
・Android Studio:Android Studio Arctic Fox 2020.3.1 Patch 4
・パソコンの機種:LIFEBOOK AH53/U FMVA53UW
・OS のバージョン:Windows 10 Home バージョン 21H1
・CPU :"Core i7 4722HQ(Haswell)"
・GPU :"インテル® HD グラフィックス 4600
回答1件
あなたの回答
tips
プレビュー