問題となっているエラー
Failed to resolve: com.github.PhilJay:MPAndroidChart:v3.1.0
Android Gradle Plugin Version 7.0.3
Gradle Version 7.3
Projectのgradleにbuildscriptではなく下記追加した場合
Build was configured to prefer settings repositories over project repositories butrepository'maven' was added by build file 'build.gradle'のエラー
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Project
gradle
1buildscript { 2 repositories { 3 google() 4 mavenCentral() 5 maven { url 'https://jitpack.io' } 6 } 7 dependencies { 8 classpath 'com.android.tools.build:gradle:7.0.3' 9 10 // NOTE: Do not place your application dependencies here; they belong 11 // in the individual module build.gradle files 12 } 13}
Module
gradle
1dependencies { 2 implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' 3}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/12/06 10:23