coolcat
07/27/2021, 2:31 PMdependencies {
implementation(project(":libB"))
}
When I do this my compileKotlinIos task fails with Unresolved reference for the classes in libB. Is there any special syntax for adding the common, android and ios flavours of the shared project?coolcat
07/27/2021, 4:58 PMcoolcat
07/27/2021, 4:59 PM./gradlew build gives
> Task :lib1:compileKotlinMetadata FAILED
e: .../lib1/src/commonMain/kotlin/lib1/Greeting1.kt: (3, 8): Unresolved reference: lib2
e: .../lib1/src/commonMain/kotlin/lib1/Greeting1.kt: (7, 25): Unresolved reference: Greeting2Mayank
07/29/2021, 6:24 PM