提问人:Simone 提问时间:9/9/2021 最后编辑:Simone 更新时间:5/3/2022 访问量:4046
无法解析类 com.github.mikephil.charting.charts.BarChart、MPAndroidChart
Cannot resolve class com.github.mikephil.charting.charts.BarChart, MPAndroidChart
问:
这是怎么回事?得到了所有指南,但我有这个错误。
在项目或库中找不到布局文件中引用的类
com.github.mikephil.charting.charts.BarChart
无法解析类 com.github.mikephil.charting.charts.BarChart
我忘记了什么吗?它需要更多的实施吗?
我的项目:
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30"
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
我的模块:
dependencies {
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
}
我的 XML:
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<com.github.mikephil.charting.charts.BarChart
android:id="@+id/fragment_verticalbarchart_chart"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
我在这里得到错误
答:
0赞
esam mohamed
2/22/2022
#1
我遇到了同样的问题,并通过添加设置 Gradle 修复了它,它工作正常maven { url "https://jitpack.io"}
2赞
Sayooj
3/8/2022
#2
在添加以下内容:build.gradle(:app)
dependencies {
//chart
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.3'
...
}
并在添加settings.gradle
maven { url "https://jitpack.io" }
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" } // add this line
}
}
0赞
Enrico
5/3/2022
#3
在 settings.gradle 中,添加 maven { url “https://jitpack.io” }。 调用菜单 File -> Sync Project with Gradle Files。
评论