Hi, I have been trying too add the library to my Android Studio project, but I get these 2 errors:
> Could not find io.data2viz.charts:core:1.1.0-eap1.
> Could not find io.data2viz.d2v:viz:0.8.12.
build.gradle root file
repositories {
            google()
            jcenter()
            maven{
                url "https://maven.pkg.jetbrains.space/data2viz/p/maven/dev"
            }
            maven{
                url "https://maven.pkg.jetbrains.space/data2viz/p/maven/public"
            }
        }
build.grafle app module file
dependencies {
        implementation 'io.data2viz.charts:core:1.1.0-eap1'
        implementation 'io.data2viz.d2v:viz:0.8.12'
        coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
    }
        
      
    

