Android Fox, использующий диаграмму MPAndroid, столкнулся с проблемой

#mpandroidchart

Вопрос:

Я пытаюсь использовать MPAndroidChart в Android studio с java. Я понимаю эту проблему. Не удалось разрешить com.github.ФилдЖей:MPAndroidChart:v3.0.2

Вот моя оценка уровня проекта.

     // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        maven { url 'https://jitpack.io' }
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.0.0"
        classpath 'com.google.gms:google-services:4.3.10'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

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

Вот градуировка уровня приложения.

     id 'com.android.application'
    id 'com.google.gms.google-services'
}

android {
    compileSdk 30

    defaultConfig {
        applicationId "android.example.workoutlog"
        minSdk 21
        targetSdk 30
        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.3.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
    ....
    implementation 'com.firebaseui:firebase-ui-firestore:8.0.0'
    implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'

}
 

Я не знаю, как решить эту проблему. Пожалуйста, помогите это выяснить.

Комментарии:

1. Я решил эту проблему, добавив каталог MPchart в папку моего проекта. Я оставляю этот комментарий на случай, если у кого-то возникнут такие же проблемы, как у меня