Reputation: 23
I am having issue in MP Android Chart Library .
I have added this library in my Project .
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0'
But still i am not able use this in My XML file.
Upvotes: 2
Views: 210
Reputation: 574
I think you are missing Something in Gradle Setup
Do you have added this in build.Gradle(Project level).
repositories {
maven { url 'https://jitpack.io' }
}
If not then please add this and lemme know it is working or not.
Upvotes: 6