Hello kotliners,
A question of opinion here.
I have been building multiplatform libs to be shared across (jvm,android and js).
In very many cases, my source codes only reside in
commonMain
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
backend