Reputation: 49
hello guys I hope I'm not repeating any question
So here is my question. what is the gradle dependency for opencsv? when i try to sync my gradle for opencsv, it gives me an error could not download commons-lang3.jar and its many other libraries
Upvotes: 3
Views: 6509
Reputation: 100
Adding this line in build.gradle must work :
dependencies {
implementation 'com.opencsv:opencsv:4.6'
.
.
.
}
Upvotes: 6