Reed Ellsworth
01/09/2021, 10:28 PMdependencies {
api(project(":logging"))
}
The library B (logging) code is not available to be used inside code in Library A. I have seen someone say that I have to publish Library B to a local maven repository but that is a pain to do especially when both libraries are under heavy development.
I am using 1.4.21 kotlin multiplatform plugin. Has anybody gotten this to work?savrov
01/10/2021, 2:51 AMproject(":logging")
, a logging lib should be a module inside your project. if it is a separate lib, u have to use a local publishingReed Ellsworth
01/10/2021, 2:54 AMlehakorshun
01/10/2021, 3:59 AM