I'm trying to understand how to add a JVM module t...
# announcements
m
I'm trying to understand how to add a JVM module to my android app project. I have a multi module project with a main app module and some kotlin library modules. - app - library1 - library2 Now I want to create a JVM desktop client reusing library1 and library 2. What can I do? I'm going crazy because I have a very superficial knowledge of how Gradle works
m
Add a "project dependency" in the form
implementation project(":library1")
or
api project(":library1")
.
compile
is also supported, even if it's deprecated.