Davide Giuseppe Farella
07/01/2022, 5:07 PM// something/build.gradle.kts
plugins {
kotlin("multiplatform")
}
kotlin {
jvm()
sourceSets {
val commonMain by getting {
dependencies {
implementation("blablabla")
Then I got an Android module
// client/android/build.gradle.kts
plugins {
id("com.android.application")
kotlin("android")
}
dependencies {
implementation(project(":something")
My Gradle Sync succeeds, but in the Android module, all the dependencies from other modules are unresolved ( screen )
The IDE suggests me to add the dependency to the classpath, but the action adds a weird line, without any progress:
implementation(project(mapOf("path" to ":client")))
agrosner
07/01/2022, 7:56 PM.idea
files and reimporting via gradle importerDavide Giuseppe Farella
07/01/2022, 8:06 PMLandry Norris
07/01/2022, 8:47 PMDavide Giuseppe Farella
07/04/2022, 7:58 AM