andylamax
12/30/2020, 4:08 AMcommonMain which is obviously a good thing. However, I do end up including jvm , android and js as compilation targets.
My question. Since the android platform basically uses java classes. Is there a need for me to keep including android as a compilation target? coz I do have the java target and all.
Those who skipped compiling for the android target, have you ever faced an issue during importing your library to an android development?
Note: All targets are compiled using the IR backendtravis
12/30/2020, 5:00 AMjvm is totally sufficient, no need for android. Library consumers will be able to use your jvm artifacts in their Android apps/libraries.
If your library depends on Android specific dependencies then you'll be stuck having to provide android artifacts.andylamax
12/30/2020, 5:36 AMPaul Woitaschek
12/30/2020, 6:36 PMandylamax
12/31/2020, 4:39 AM