I'm trying to write tests for a KMP project, I get...
# multiplatform
c
I'm trying to write tests for a KMP project, I get the following error when trying to run the Android test, what could be wrong?
Copy code
unable to enhance gradle daemon classloader with idea_rt.jar
org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':shared:debugUnitTestRuntimeClasspath'.
	...
	at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
	at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
	at org.gradle.internal.concurrent.ThreadFactoryImpl$ManagedThreadRunnable.run(ThreadFactoryImpl.java:56)
	at java.lang.Thread.run(Thread.java:748)
Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find org.junit.jupiter:junit-jupiter:.
Required by:
    project :shared
j
Could not find org.junit.jupiter:junit-jupiter:.
looks like you are missing the version value of the dependency? Which repository are you including in your build.gradle file?