Slackbot
07/29/2022, 4:49 PMMartin
07/29/2022, 4:50 PMMartin
07/29/2022, 4:51 PMtony
07/29/2022, 4:52 PMMartin
07/29/2022, 4:52 PMplugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
dependencies {
implementation(project(":jvm-only"))
}
Martin
07/29/2022, 4:52 PMLilly
07/29/2022, 4:57 PMid("com.android.library")
as well?Martin
07/29/2022, 4:58 PM.aar
files that JVM in general doesn't understandMartin
07/29/2022, 4:59 PM.aar
and has some APIs that are not available to JVM (Context, Views
, etc..). If you want to consume that from a JVM project, you'll have to isolate the non-android partsLilly
07/29/2022, 5:04 PM