Riccardo Montagnin
02/28/2019, 9:36 AMtargets
, to place an android
clause including a sibling module that is an android app?
I have the current structure:
project
|- android-app
|- common
|- commonMain
|- iosMain
|- jvmMain
I would like to create some actual
implementations inside the android-app
module, which is an Android application module. How would I have to do?
Right now when I compile the Android app the jvmMain
is compiled, but I would like to provide some custom actual
implementations for the Android appSabrina Namur
02/28/2019, 9:41 AMribesg
02/28/2019, 9:52 AMbuild.gradle.kts
project
|- commonMain
|- androidMain
|- iosMain
|- jvmMain
Riccardo Montagnin
02/28/2019, 9:58 AMgildor
02/28/2019, 9:59 AMRiccardo Montagnin
02/28/2019, 10:01 AMcommonMain
, an iosMain
a jvmMain
and an androidMain
gildor
02/28/2019, 10:07 AMRiccardo Montagnin
02/28/2019, 10:10 AMgildor
02/28/2019, 11:34 AMribesg
02/28/2019, 11:36 AMh0tk3y
02/28/2019, 11:46 AM*.gradle
or *.gradle.kts
script plugins and applying them in the main build script.ribesg
02/28/2019, 11:47 AMRiccardo Montagnin
02/28/2019, 11:48 AMuli
02/28/2019, 9:21 PMribesg
03/01/2019, 9:00 AMuli
03/01/2019, 9:00 AM