android kotlin MPAndroidChart

android kotlin MPAndroidChart

我目前正在使用 MPAndroid Chart 在 Android 上绘制图表。

官方文档让我做如下操作,但我不明白是什么意思

  1. Gradle 设置
repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
}
  1. Maven 设置
<!-- <repositories> section of pom.xml -->
<repository>
    <id>jitpack.io</id>
   <url>https://jitpack.io</url>
</repository>

<!-- <dependencies> section of pom.xml -->
<dependency>
    <groupId>com.github.PhilJay</groupId>
    <artifactId>MPAndroidChart</artifactId>
    <version>v3.1.0</version>
</dependency>

首先,build.gradle文件是应用程序还是项目?

我应该在哪里为您制作应用程序?

pom.xml 文件在哪里?

在build.gradle(项目) 确保你有

allprojects {
    repositories {
        google()
        maven { url "https://jitpack.io" }// you have this line
     }
}

在您的 build.gradle(模块)

dependencies {
    //this line
    implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
}