We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TODO: Place an x in one of the [ ].
x
[ ]
TODO: (Describe your issue here) Getting NoSuchMethodError kotlin.collections.ArraysKt.copyInto([B[BIII) while starting application Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
okio.Segment.writeTo(Segment.kt:169)
The following method did not exist:
kotlin.collections.ArraysKt.copyInto([B[BIII)[B
The method's class, kotlin.collections.ArraysKt, is available from the following locations:
jar:file:/C:/Users/**/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71.jar!/kotlin/collections/ArraysKt.class
It was loaded from the following location:
file:/C:/Users/**/.m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.71/kotlin-stdlib-1.2.71.jar
Action:
Correct the classpath of your application so that it contains a single, compatible version of kotlin.collections.ArraysKt
(only for a bug report)
TODO: If this is a bug report, filling out the following details about bugs will help us solve your issue sooner.
The issue is reproducible in:
java -version
The steps to reproduce are: 1. 2. 3.
The expected result is: TODO: What you expected to happen
TODO:
The text was updated successfully, but these errors were encountered:
@AbhiInfy
NoSuchMethodError kotlin.collections.ArraysKt.copyInto([B[BIII)
The error message indicates your build settings (or IDE settings) have some binary-compatibility issue with the Kotlin standard library.
kotlin-stdlib/1.2.71
This SDK requires okhttp library, which depends on Kotlin 1.3.x. Try Kotlin 1.3.x instead.
Sorry, something went wrong.
Let me know if you need further help here. Please allow me to close this issue after waiting for your response for a few more days.
Please allow me to close this issue after waiting for your response for a few more days.
Closing now. Please feel free to reopen if needed.
I replace the version with 1.3.70. It works for me.
$ mvn dependency:tree [INFO] \- com.squareup.okhttp3:okhttp:jar:4.9.1:compile [INFO] +- com.squareup.okio:okio:jar:2.8.0:compile [INFO] | \- org.jetbrains.kotlin:kotlin-stdlib-common:jar:1.4.0:compile [INFO] \- org.jetbrains.kotlin:kotlin-stdlib:jar:1.2.71:compile [INFO] \- org.jetbrains:annotations:jar:13.0:compile
<dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> <version>4.9.1</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>1.3.70</version> </dependency>
No branches or pull requests
Issue Type
TODO:
Place an
x
in one of the[ ]
.Description
TODO:
(Describe your issue here)
Getting NoSuchMethodError kotlin.collections.ArraysKt.copyInto([B[BIII) while starting application
Description:
An attempt was made to call a method that does not exist. The attempt was made from the following location:
The following method did not exist:
The method's class, kotlin.collections.ArraysKt, is available from the following locations:
It was loaded from the following location:
Action:
Correct the classpath of your application so that it contains a single, compatible version of kotlin.collections.ArraysKt
I am trying to run com.slack.api.Slack application by IntelliJ IDE in Java to send the message in slack. I am using Java 1.8 and SpringBoot
(only for a bug report)
TODO:
If this is a bug report, filling out the following details about bugs will help us solve your issue sooner.
The issue is reproducible in:
java -version
and pates the result hereThe steps to reproduce are:
1.
2.
3.
The expected result is:
TODO: What you expected to happen
The actual result is:
TODO: What actually happened
Requirements (place an
x
in each of the[ ]
)TODO:
The text was updated successfully, but these errors were encountered: