loke
05/09/2024, 3:27 AMcommon
, and then there is some glue code in jvm
, js
and linux
that allows me to target these platforms. I also have a separate project that links to it in order to provide an Android UI. Now, I recently added some code to the jvm
part of the project that doesn't compile on Android (it uses some Java 21 API's). Is there a way to separate out the non-Android code so that the Android build doesn't try to compile it?andylamax
05/09/2024, 3:59 AMbuild.gradle.kts
loke
05/09/2024, 4:13 PMactual
implementations in the jvm
package that I want to use from the android
one. Is there a different target I can use that is shared between jvm
and android
?andylamax
05/09/2024, 4:15 PMloke
05/13/2024, 3:47 AM