Add this in your root build.gradle file (not your module build.gradle file):
allprojects {
repositories {
maven { url "https://volcanomobile.jfrog.io/artifactory/public" }
}
}Then, add the library to your module build.gradle
dependencies {
implementation 'net.volcanomobile:euclidean-sequence-generator:0.3.4'
}