We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d0b55e commit 025f563Copy full SHA for 025f563
2 files changed
README.md
@@ -57,8 +57,6 @@ Add this dependency to your project's build file:
57
58
dependencies {
59
implementation "com.github.freeclimbapi:freeclimb-java-client:6.3.0"
60
- implementation("com.squareup.okhttp3:okhttp:4.9.3")
61
- implementation("com.squareup.okhttp3:logging-interceptor:4.9.3")
62
}
63
```
64
build.gradle
@@ -101,6 +101,12 @@ if(hasProperty('target') && target == 'android') {
101
mainClass = System.getProperty('mainClass')
102
classpath = sourceSets.main.runtimeClasspath
103
104
+
105
+ task copyDependencies(type: Copy) {
106
+ from configurations.runtimeClasspath
107
+ into "$buildDir/lib"
108
+ }
109
+ tasks.build.dependsOn(copyDependencies)
110
111
112
ext {
0 commit comments