Search code examples
androidopencsv

android studio what is the gradle dependencies for opencsv


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


Solution

  • Adding this line in build.gradle must work :

    dependencies {
        implementation 'com.opencsv:opencsv:4.6'
        .
        .
        .
    }