无法解析类 com.github.mikephil.charting.charts.BarChart、MPAndroidChart

Cannot resolve class com.github.mikephil.charting.charts.BarChart, MPAndroidChart

提问人:Simone 提问时间:9/9/2021 最后编辑:Simone 更新时间:5/3/2022 访问量:4046

问:

这是怎么回事?得到了所有指南,但我有这个错误。

  • 在项目或库中找不到布局文件中引用的类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>

我在这里得到错误

maven gradle android-gradle-plugin mpandroidchart android-library

评论

0赞 Lilya 9/10/2021
我已经检查了我的项目,我在 build.gradles 中几乎相同。除了我的布局。我创建了一个自定义类 ChartView:LineChart,我在其中实现了 com.github.mikephil.charting.charts.LineChart、XAxis、Entry 等。在我的布局中,我只使用:<my.project.view.custom.ChartView />。您也可以尝试这种方式。
0赞 alexchvrches 9/24/2021
我面临同样的问题,有什么建议吗?

答:

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.gradlemaven { 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。

评论

0赞 Community 5/4/2022
正如目前所写的那样,你的答案尚不清楚。请编辑以添加其他详细信息,以帮助其他人了解这如何解决所提出的问题。您可以在帮助中心找到有关如何写出好答案的更多信息。