DecoView依赖性不起作用



我正在为最后一年的项目工作,似乎无法让我的依赖项工作?

implementation 'com.github.bmarrdev:android-DecoView-charting:v1.2'

这是我使用的依赖项,如中所示https://github.com/bmarrdev/android-DecoView-charting

我真的很感谢任何人在这方面的帮助。提前感谢

buildscript {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'

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

我现在已经添加了感谢

您需要添加到build.gradle文件:

repositories {
maven { url "https://jitpack.io" }
}

最新更新