1.问题描述
新项目中添加MPAndroidChart依赖,总是加载不上,可能是网络原因。
Failed to resolve: com.github.PhilJay:MPAndroidChart:v3.1.0
Show in Project Structure dialog
Affected Modules: app
2.解决办法
众所周知,Android通过gradle下载的依赖会存放在
C:\Users\MSI.gradle\caches\modules-2\files-2.1目录下
那么我们可以将MPAndroidChart依赖文件MPAndroidChart-v3.1.0.aar放到app/libs下,libs文件夹需要自己创建
然后在build.gradle(:app)中加上implementation(fileTree("libs"))
如下所示:
dependencies {
implementation 'com.daimajia.swipelayout:library:1.2.0'
implementation 'com.kyleduo.switchbutton:library:2.1.0'
//记得将原来的注释掉不然还是去下载,而不是我们添加的本地的依赖了
// implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
implementation(fileTree("libs"))//要加上这一句,才能加载本地的依赖
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.8.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.getbase:floatingactionbutton:1.10.1'
implementation 'com.google.code.gson:gson:2.10.1'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}
3.依赖文件分享
我已经打包MPAndroidChart v3.1.0了需要的自取
https://wwb.lanzouo.com/ir0k91uqkm7c