Sor Mathew
Sor Mathew

Reputation: 23

Pie Chart in Android With MPAndroid library

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

Answers (1)

Nadim Ansari
Nadim Ansari

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

Related Questions