Closed thomasneuteboom closed 2 years ago
Try this:
...
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
...
dependencies {
implementation 'com.github.binance-exchange:binance-java-api:master'
}
Hey! Thanks for your answer. It works, but unfortunately (and strangely) it pulls and builds an older version of 'master'. I fixed it by defining the latest commit hash like so:
...
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
}
...
dependencies {
implementation 'com.github.binance-exchange:binance-java-api:08d52a49a3031e504b0712f823d9aa0b0a1d142b'
}
As of today I can't download
binance-java-api
via Jitpack and Gradle.build.gradle.kts:
Any solution for this?
Thanks in advance.