I'm using a custom `configurations.resolutionStrat...
# compose-desktop
j
I'm using a custom
configurations.resolutionStrategy.eachDependency { ... }
block to automatically set the versions of my 3P dependencies, and for some reason this doesn't work well in the IDE when syncing my project (e.g. it prints the error
Could not find org.jetbrains.compose.runtime:runtime:.
and the references don't work) but the code compiles fine with Gradle. Any idea what could be causing this by any chance?
Looks like the bug does not happen if I remove the android target
Well, looks like replacing the
com.android.library
by
com.android.kotlin.multiplatform.library
fixed the issue 🙂