我在我的项目中添加了 MPAndroidChart 但在我的 xml 中我找不到 LineChart

I add MPAndroidChart in my project but in my xml I cant find LineChart

我想在我的项目中使用 MPAndroidChart。
我在我的 gradle 中添加了该库,但在我的 xml 布局文件中,我找不到图表。
我的 build.gradle(模块)是这样的:

dependencies {

implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0' 
}

和build.gradle(项目)是这样的:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        google()
        mavenCentral()
        maven { url 'https://jitpack.io' }

    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.0.3"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.20"

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

但我在 xml 布局文件中找不到图表

setting.gradle 文件中添加 maven { url 'https://jitpack.io' } 而不是 build.gradle(项目)